aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket65/bug2.vhdl
blob: 018f85e7ad352fd8d2dfd5026f8de27d51be4faf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
entity ent2 is
end entity;

architecture a of ent2 is
begin
  main : process is
    type enum_t is (value1, value2);
    variable var : enum_t;
  begin
    var := enum_t'rightof(value1); -- Works
    var := enum_t'leftof(value2); -- Works
    var := enum_t'rightof(var); -- cannot handle IIR_KIND_RIGHTOF_ATTRIBUTE
    var := enum_t'leftof(var);  -- cannot handle IIR_KIND_LEFTOF_ATTRIBUTE
    wait;
  end process;
end architecture;