diff options
Diffstat (limited to 'testsuite/gna/ticket69/repro.vhdl')
-rw-r--r-- | testsuite/gna/ticket69/repro.vhdl | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/testsuite/gna/ticket69/repro.vhdl b/testsuite/gna/ticket69/repro.vhdl new file mode 100644 index 0000000..daf9b47 --- /dev/null +++ b/testsuite/gna/ticket69/repro.vhdl @@ -0,0 +1,19 @@ +library ieee; +use ieee.numeric_std.all; + +entity ent is +end entity; + +library ieee; +use ieee.std_logic_1164.all; + +architecture a of ent is +begin + main : process + variable a,b : unsigned(0 downto 0) := "1"; + begin + assert a = b; -- Works + assert ieee.numeric_std."="(a, b); + wait; + end process; +end architecture; |