aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue106/ent3.vhdl
blob: 254960eb4a213494148e3ad0d2b475a7d88bb744 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
library ieee;
use ieee.std_logic_1164.all;
use ieee.numeric_std.all;

entity ent is
end entity ent;

architecture arch of ent is
  signal test: natural;
begin
  LL: case test generate
    when =>
  end generate;
end architecture arch;