diff options
author | Tristan Gingold <tgingold@free.fr> | 2020-02-04 18:54:41 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2020-02-04 18:54:41 +0100 |
commit | 6bc84d1de4776a15939cf2b72021bdf0b97b930d (patch) | |
tree | b0e894e8b7e8b764ccedd7989ff8a5a5a22c9232 /testsuite/gna/bug0100/emptyquote2.vhdl | |
parent | 75b1993a8981d4c77bda3c52356fced476ac1626 (diff) | |
download | ghdl-6bc84d1de4776a15939cf2b72021bdf0b97b930d.tar.gz ghdl-6bc84d1de4776a15939cf2b72021bdf0b97b930d.tar.bz2 ghdl-6bc84d1de4776a15939cf2b72021bdf0b97b930d.zip |
testsuite/gna: add tests for previous 2 commits.
Diffstat (limited to 'testsuite/gna/bug0100/emptyquote2.vhdl')
-rw-r--r-- | testsuite/gna/bug0100/emptyquote2.vhdl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/gna/bug0100/emptyquote2.vhdl b/testsuite/gna/bug0100/emptyquote2.vhdl new file mode 100644 index 000000000..a02166976 --- /dev/null +++ b/testsuite/gna/bug0100/emptyquote2.vhdl @@ -0,0 +1,15 @@ +entity emptyquote is +end; + +architecture behav of emptyquote is + procedure proc is + begin + null; + end proc; +begin + process + begin + proc' ' + null; + end process; +end; |