Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
713605cadef845b9f44d6469208fb6e902ace095
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-6
/
6.19.5.2--enum_last.sv
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