aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/str.vhdl
blob: b190536d80565f2d0528b3668cda9d98a9522987 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
entity str is
end str;

architecture behav of str is
begin
  process
  begin
    null;
    "abc";
    null;
  end process;
end behav;