Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
356a4bf2123fc606ca19fbed9b9c535f149fdec5
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-8
/
8.27--forward_declaration.sv
blob: c5ccaeb30887d344819ea4ab819d85ff89133a69 [
file
]
/*
: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