diff options
Diffstat (limited to 'testsuite/gna/issue478/repro4.vhdl')
-rw-r--r-- | testsuite/gna/issue478/repro4.vhdl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/testsuite/gna/issue478/repro4.vhdl b/testsuite/gna/issue478/repro4.vhdl new file mode 100644 index 000000000..a32c72287 --- /dev/null +++ b/testsuite/gna/issue478/repro4.vhdl @@ -0,0 +1,10 @@ +entity repro4 is +end; + +architecture behav of repro4 is +begin + process + begin + "foo" (true, false); + end process; +end; |