diff options
Diffstat (limited to 'testsuite/gna/bug017/wait1.vhdl')
-rw-r--r-- | testsuite/gna/bug017/wait1.vhdl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/bug017/wait1.vhdl b/testsuite/gna/bug017/wait1.vhdl new file mode 100644 index 000000000..fbea74af2 --- /dev/null +++ b/testsuite/gna/bug017/wait1.vhdl @@ -0,0 +1,13 @@ +entity wait1 is +end; + +architecture behav of wait1 is +begin + process + begin + report "hello"; + wait for 1 ns; + report "SUCCESS"; + wait; + end process; +end behav; |