aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1876/pkgent.vhdl
blob: 546a8a342a2d66d8d048147d8027118d50c59fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package pkg is
    subtype runner_cfg_t is string;
end;

use work.pkg.runner_cfg_t;

entity pkgent is
  generic ( mygeneric : runner_cfg_t );
end;

architecture arch of pkgent is
begin
  assert mygeneric = "Hello" report "Generic mygeneric is not 'Hello'!" severity failure;
end;