diff options
Diffstat (limited to 'testsuite/gna/issue407/test.vhdl')
-rw-r--r-- | testsuite/gna/issue407/test.vhdl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/gna/issue407/test.vhdl b/testsuite/gna/issue407/test.vhdl new file mode 100644 index 000000000..24f2f056d --- /dev/null +++ b/testsuite/gna/issue407/test.vhdl @@ -0,0 +1,11 @@ +entity test is +begin +end entity; + +architecture arch of test is +begin + process(all) + begin + report "compilation crashes here"; + end process; +end architecture; |