1
0
mirror of synced 2026-01-14 15:55:08 +00:00
2020-03-11 06:51:03 -07:00

9 lines
262 B
Plaintext

logger -expect warning "wire '\\o' is assigned in a block at <<EOT:2.11-2.17" 1
logger -expect warning "wire '\\p' is assigned in a block at <<EOT:3.11-3.16" 1
read_verilog <<EOT
module top(input i, output o, p);
always @* o <= i;
always @* p = i;
endmodule
EOT