25 lines
258 B
Coq
25 lines
258 B
Coq
|
|
module test;
|
||
|
|
|
||
|
|
integer i;
|
||
|
|
|
||
|
|
class myclass;
|
||
|
|
integer j;
|
||
|
|
function void init();
|
||
|
|
j = i;
|
||
|
|
endfunction
|
||
|
|
endclass
|
||
|
|
|
||
|
|
myclass c;
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
i = 1;
|
||
|
|
c = new;
|
||
|
|
c.init();
|
||
|
|
if (c.j === 1)
|
||
|
|
$display("PASSED");
|
||
|
|
else
|
||
|
|
$display("FAILED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endmodule
|