aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1810/repro.vhdl
blob: 9fa6e84125fc39c7ead7dbde7b0212c14e628016 (plain)
1
2
3
4
5
6
7
8
entity repro is
end;

architecture behav of repro is
  constant t1: time := 10 ns mod 3 ns;
begin
  assert t1 = 1 ns severity failure;
end;