aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1936/repro.vhdl
blob: 0e858848a218fb990015f097a161b8f1de8230f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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;