aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug018/repro.vhdl
blob: c2f2fcf9cfd0dc727d86e9acd7c18ff8a62a574d (plain)
1
2
3
4
5
6
7
8
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;