aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/attr02/rightof01.vhdl
blob: 6b04252597372e55c94d05302f5041aaa58fcef5 (plain)
1
2
3
4
5
6
7
8
9
entity rightof01 is
  port (i : integer;
        o : out integer);
end rightof01;

architecture behav of rightof01 is
begin
  o <= integer'rightof(i);
end behav;