diff options
Diffstat (limited to 'testsuite/synth/issue1086/test.vhdl')
-rw-r--r-- | testsuite/synth/issue1086/test.vhdl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/testsuite/synth/issue1086/test.vhdl b/testsuite/synth/issue1086/test.vhdl new file mode 100644 index 000000000..b88616eea --- /dev/null +++ b/testsuite/synth/issue1086/test.vhdl @@ -0,0 +1,16 @@ +library ieee; +use ieee.std_logic_1164.all; + +entity test is +end entity test; + +architecture rtl of test is + type reg_internal_type is record + outstanding : integer; + end record; +begin + control1 : process(all) + variable v_int : reg_internal_type; + begin + end process; +end; |