aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue69/mytest.vhdl
blob: 6a53176b34ad3fbc23dcc5aa365942a57f0ab968 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
entity mytest is
end mytest;

library mylib;
use mylib.mypkg.all;

architecture behav of mytest is
begin
  process
  begin
    report msg severity note;
    wait;
  end process;
end behav;