iverilog/ivtest/ivltests/enum_base_fail_array.v

17 lines
209 B
Coq
Raw Normal View History

// Check that using an array type as the base type for an enum results in an
// error.
module test;
typedef logic T[1:0];
enum T {
A
} e;
initial begin
$display("FAILED");
end
endmodule