aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue2372/to01.vhdl
blob: e54c74808c7aeb2bb99e60f22f2c0a4fb958f6ce (plain)
1
2
3
4
5
6
7
library IEEE; use IEEE.std_logic_1164.all;
entity to01 is 
  port (din : in std_logic; dout : out std_logic);
end;
architecture test of to01 is begin
  dout <= to_01(din);
end;