1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21entity repro is end entity; architecture tb of repro is type tb_cfg_t is record value : string; end record tb_cfg_t; constant tb_cfg: tb_cfg_t := ( value => "hello" ); begin assert tb_cfg.value > "a"; end tb;
entity repro is end entity; architecture tb of repro is type tb_cfg_t is record value : string; end record tb_cfg_t; constant tb_cfg: tb_cfg_t := ( value => "hello" ); begin assert tb_cfg.value > "a"; end tb;