aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue407/test1.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue407/test1.vhdl')
-rw-r--r--testsuite/gna/issue407/test1.vhdl12
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/issue407/test1.vhdl b/testsuite/gna/issue407/test1.vhdl
new file mode 100644
index 000000000..6893d4405
--- /dev/null
+++ b/testsuite/gna/issue407/test1.vhdl
@@ -0,0 +1,12 @@
+entity test1 is
+begin
+end entity;
+
+architecture arch of test1 is
+begin
+ process(all)
+ begin
+ assert false report "compilation crashes here";
+ assert false;
+ end process;
+end architecture;