1
0
mirror of synced 2026-01-26 04:11:35 +00:00
Files
YosysHQ.yosys/tests/various/bug1745.ys

9 lines
189 B
Plaintext

logger -expect error "syntax error, unexpected TOK_CONSTVAL" 1
read_verilog <<EOT
module inverter(input a, output y);
assign y = (a == 1'b0? 1'b1 : 1'b0);
endmodule // inverter
EOT