15 lines
180 B
Coq
15 lines
180 B
Coq
|
|
program test;
|
||
|
|
|
||
|
|
class a;
|
||
|
|
function new(string str);
|
||
|
|
$display(str);
|
||
|
|
endfunction
|
||
|
|
endclass // a
|
||
|
|
|
||
|
|
initial begin
|
||
|
|
a m_a;
|
||
|
|
m_a = new("PASSED");
|
||
|
|
end
|
||
|
|
|
||
|
|
endprogram
|