mirror of
https://github.com/YosysHQ/yosys
synced 2025-06-05 21:53:24 +00:00
9 lines
211 B
Text
9 lines
211 B
Text
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
|