Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
1b0062119887da734c600d091a65c037f5fafa7d
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-6
/
6.19.5.1--enum_first.sv
blob: 01de6b34cb0e15a9dd0ec731b9f95348c64b3942 [
file
] [
log
] [
blame
]
/*
:name: enum_first
:description: enum first method tests
:should_fail: 0
:tags: 6.19.5.1
*/
module
top
();
typedef
enum
{
a
,
b
,
c
,
d
}
e
;
initial
begin
e val
=
a
;
val
=
val
.
first
();
end
endmodule