1entity issue204 is
2end entity;
3
4architecture a of issue204 is
5  type enum_t is (a, b);
6begin
7  main : process
8  begin
9    assert enum_t'leftof(b) = a;
10    assert enum_t'rightof(a) = b;
11    wait;
12  end process;
13end architecture;
14