mirror of
https://github.com/zachjs/sv2v.git
synced 2026-09-03 05:54:05 +02:00
11 lines
242 B
Systemverilog
11 lines
242 B
Systemverilog
// pattern: case has multiple defaults
|
|
module top;
|
|
initial
|
|
case (0)
|
|
0: $display("FOO");
|
|
1: $display("BAR");
|
|
default: $display("A");
|
|
default: $display("B");
|
|
endcase
|
|
endmodule
|