Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
1c596881d1a7fc4baa7972b1f16b2e3d461aa200
/
.
/
src
/
Testcases
/
Google
/
chapter-6
/
6.19.5.3--enum_next.sv
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