diff options
Diffstat (limited to 'testsuite/gna/bug018/repro.vhdl')
-rw-r--r-- | testsuite/gna/bug018/repro.vhdl | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/gna/bug018/repro.vhdl b/testsuite/gna/bug018/repro.vhdl new file mode 100644 index 0000000..c2f2fcf --- /dev/null +++ b/testsuite/gna/bug018/repro.vhdl @@ -0,0 +1,9 @@ +ENTITY repro_ent IS +port( S : string := "abcdef"); +END repro_ent; + +ARCHITECTURE repro_arch OF repro_ent IS + constant C : string := "abcdef"; +BEGIN + assert S = C; +END repro_arch; |