aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1033/entcos.vhdl
blob: ddc984a26603a0d02d123aa9d4bd8554005ec98b (plain)
1
2
3
4
5
6
7
8
9
10
library ieee;
use ieee.math_real.all;

entity entcos is
end entcos;

architecture a of entcos is
	constant cos_val : real := cos(1.0);
begin
end a;