mirror of https://github.com/YosysHQ/yosys.git
13 lines
278 B
Plaintext
13 lines
278 B
Plaintext
|
logger -expect error "Incompatible re-declaration of constant function wire" 1
|
||
|
read_verilog -sv <<EOT
|
||
|
module top;
|
||
|
function automatic integer f;
|
||
|
input [1:0] inp;
|
||
|
integer inp;
|
||
|
f = inp;
|
||
|
endfunction
|
||
|
integer x;
|
||
|
initial x = f(0);
|
||
|
endmodule
|
||
|
EOT
|