diff options
Diffstat (limited to 'testsuite/gna/issue2150/e2.vhdl')
-rw-r--r-- | testsuite/gna/issue2150/e2.vhdl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/issue2150/e2.vhdl b/testsuite/gna/issue2150/e2.vhdl new file mode 100644 index 000000000..c8d7fa29b --- /dev/null +++ b/testsuite/gna/issue2150/e2.vhdl @@ -0,0 +1,13 @@ +entity e2 is end; + +architecture a of e2 is +begin + ------------------------------------------------------------------------ + -- There is no infinite loop when there is an assertion with boolean + -- literal false and severity failiure that is unconditioinally executed + ------------------------------------------------------------------------ + process + begin + assert false severity failure; + end process; +end; |