aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1387/repro1.vhdl
blob: 4744a9d62e9ec7ee461d0feeee4076ad84bba9de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package repro1_pkg is
  signal s : bit;
  constant cst : natural := 5;
end;

use work.repro1_pkg.all;

entity repro1 is
  port (a,b : bit;
        c : out bit);
end repro1;

architecture behav of repro1 is
begin
  c <= a xor b;
end behav;