diff options
Diffstat (limited to 'testsuite/gna/bug085/foo.vhdl')
-rw-r--r-- | testsuite/gna/bug085/foo.vhdl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/bug085/foo.vhdl b/testsuite/gna/bug085/foo.vhdl new file mode 100644 index 000000000..a5eec4d33 --- /dev/null +++ b/testsuite/gna/bug085/foo.vhdl @@ -0,0 +1,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; |