diff options
Diffstat (limited to 'testsuite/gna/issue735/ent.vhdl')
-rw-r--r-- | testsuite/gna/issue735/ent.vhdl | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/gna/issue735/ent.vhdl b/testsuite/gna/issue735/ent.vhdl new file mode 100644 index 000000000..f44d5dab2 --- /dev/null +++ b/testsuite/gna/issue735/ent.vhdl @@ -0,0 +1,12 @@ +entity ent is +end entity; + +architecture impl of ent is + type bool_vector is array(0 downto 0) of boolean; + signal baz: bool_vector; +begin + +assert baz(0) + severity note; + +end architecture; |