aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug017/simple.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug017/simple.vhdl')
-rw-r--r--testsuite/gna/bug017/simple.vhdl11
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/gna/bug017/simple.vhdl b/testsuite/gna/bug017/simple.vhdl
new file mode 100644
index 000000000..539bc1097
--- /dev/null
+++ b/testsuite/gna/bug017/simple.vhdl
@@ -0,0 +1,11 @@
+entity simple is
+end;
+
+architecture behav of simple is
+begin
+ process
+ begin
+ report "hello";
+ assert false report "SUCESS";
+ end process;
+end behav;