blob: ccaf1c2c71f81cfaea5c92a7bd75033ae34fb618 [file] [log] [blame]
/*
:name: enum_next
:description: enum next method tests
:should_fail: 0
:tags: 6.19.5.3
*/
module top();
typedef enum {a, b, c, d} e;
initial begin
e val = a;
val = val.next();
end
endmodule