aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket90/test.vhdl
blob: 92b1971171f32c510addbfb1f3ebf7d135bb4640 (plain)
1
2
3
4
5
6
7
8
9
10
entity test is
    generic (
    a, b : integer);
begin
    assert a = b report "a /= b" severity failure;
end entity;

architecture a of test is
begin
end architecture;