mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-11 19:53:35 +00:00
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
|