aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket77/bug4.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/ticket77/bug4.vhdl')
-rw-r--r--testsuite/gna/ticket77/bug4.vhdl12
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/ticket77/bug4.vhdl b/testsuite/gna/ticket77/bug4.vhdl
new file mode 100644
index 000000000..a1f927d80
--- /dev/null
+++ b/testsuite/gna/ticket77/bug4.vhdl
@@ -0,0 +1,12 @@
+entity ent4 is
+end entity;
+
+architecture a of ent4 is
+begin
+ main : process
+ begin
+-- wait for 0 ns; -- Comment and it exits with code 1
+ std.env.stop(0);
+ wait;
+ end process;
+end architecture;