mirror of https://github.com/YosysHQ/yosys.git
10 lines
211 B
Plaintext
10 lines
211 B
Plaintext
|
logger -expect warning "Attribute\(s\) attached to null statement\. Ignoring\." 1
|
||
|
logger -expect-no-warnings
|
||
|
read_verilog <<EOT
|
||
|
module test ();
|
||
|
localparam y = 1;
|
||
|
always @(*)
|
||
|
if (y) (* foo *) ;
|
||
|
endmodule
|
||
|
EOT
|