aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue953/ent.vhdl
blob: 72c7988b2f61f1b345c1318507b66be059b02695 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
library ieee;
use ieee.std_logic_1164.all,
    ieee.numeric_std.all;

entity ent is
end;

architecture a of ent is
    signal x : unsigned(7 downto 0);
    signal y : unsigned(7 downto 0) := x / 2;
    signal z : unsigned(15 downto 0) := x * 2;
begin
end;