diff options
Diffstat (limited to 'testsuite/synth/issue1936/repro.vhdl')
-rw-r--r-- | testsuite/synth/issue1936/repro.vhdl | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/testsuite/synth/issue1936/repro.vhdl b/testsuite/synth/issue1936/repro.vhdl new file mode 100644 index 000000000..0e858848a --- /dev/null +++ b/testsuite/synth/issue1936/repro.vhdl @@ -0,0 +1,22 @@ +library ieee; +use ieee.std_logic_1164.all; + +library std; +use std.textio.all; + +entity test is + port ( + clock : in std_logic + ); +end test; + +architecture test_arc of test is + impure function minified_func return boolean is + file fref, fref2: text; + begin + return false; + end function; +begin + +end test_arc; + |