diff options
Diffstat (limited to 'testsuite/gna/issue1128/test.vhdl')
-rw-r--r-- | testsuite/gna/issue1128/test.vhdl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/gna/issue1128/test.vhdl b/testsuite/gna/issue1128/test.vhdl new file mode 100644 index 000000000..5de688c2d --- /dev/null +++ b/testsuite/gna/issue1128/test.vhdl @@ -0,0 +1,14 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity test is + port( + input : in unsigned := "0011"); +end entity; + +architecture rtl of test is + signal copy : input'subtype; +begin +end architecture; + |