From e1a8d8789fcac1d46d381dc2f7803f7c0a0ed970 Mon Sep 17 00:00:00 2001 From: Tristan Gingold Date: Wed, 2 Sep 2015 18:22:06 +0200 Subject: Add bug018 --- testsuite/gna/bug018/repro1.vhdl | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 testsuite/gna/bug018/repro1.vhdl (limited to 'testsuite/gna/bug018/repro1.vhdl') diff --git a/testsuite/gna/bug018/repro1.vhdl b/testsuite/gna/bug018/repro1.vhdl new file mode 100644 index 0000000..05fa363 --- /dev/null +++ b/testsuite/gna/bug018/repro1.vhdl @@ -0,0 +1,9 @@ +ENTITY repro1_ent IS +port( S : inout string := "abcdef"); +END repro1_ent; + +ARCHITECTURE repro1_arch OF repro1_ent IS + constant C : string := "abcdef"; +BEGIN + assert S = C; +END repro1_arch; -- cgit