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