aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue621/ent.vhdl
blob: 47f7faa89859926936ae0e738b8743846020e8e3 (plain)
1
2
3
4
5
6
7
8
9
entity crash_entity is end entity;
architecture default of crash_entity is
	attribute s : string;
	function func return boolean is
	begin
		return s(1);
	end function;
begin
end architecture;