aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug085/foo.vhdl
blob: a5eec4d33fc69dda84a27b8b6a83f2df50496479 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
entity foo is
end entity;

architecture fum of foo is
begin
   process
   begin
       report "integer'high = " & integer'image(integer'high);
       report "16#1FFFFFFFF# = " 
            & integer'image(16#1FFFFFFFF#);
       wait;
   end process;
end architecture;