sv2v/test/error/casex_inside.sv

9 lines
180 B
Systemverilog
Raw Normal View History

2021-02-17 19:26:13 +01:00
// pattern: cannot use inside with casex
module top;
initial
casex (0) inside
0: $display("FOO");
1: $display("BAR");
endcase
endmodule