diff options
Diffstat (limited to 'testsuite/gna/bug0100/str.vhdl')
-rw-r--r-- | testsuite/gna/bug0100/str.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/bug0100/str.vhdl b/testsuite/gna/bug0100/str.vhdl new file mode 100644 index 000000000..b190536d8 --- /dev/null +++ b/testsuite/gna/bug0100/str.vhdl @@ -0,0 +1,12 @@ +entity str is +end str; + +architecture behav of str is +begin + process + begin + null; + "abc"; + null; + end process; +end behav; |