Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-8
/
8.27--forward_declaration.sv
blob: c5ccaeb30887d344819ea4ab819d85ff89133a69 [
file
] [
log
] [
blame
]
/*
:name: forward_declaration
:description: class forward declaration test
:should_fail: 0
:tags: 8.27
*/
module
class_tb
();
typedef
class
C2
;
class
C1
;
C2 c
;
endclass
class
C2
;
C1 c
;
endclass
endmodule