blob: e4e9e9ea32712aadd72753d849bdff5f466e7ac4 [file] [log] [blame]
/*
:name: super
:description: accessing superclass methods via super
:should_fail: 0
:tags: 8.15
*/
module class_tb ();
class super_cls;
int s = 2;
function int incs();
incs = ++s;
endfunction
function new(int def = 3);
s = def;
endfunction
endclass
class test_cls extends super_cls;
int a;
function int incs();
s += 2;
incs = super.incs();
endfunction
function new(int def = 42);
super.new(def + 3);
a = def;
endfunction
endclass
test_cls test_obj;
super_cls super_obj;
initial begin
test_obj = new(37);
super_obj = test_obj;
$display(test_obj.s);
$display(test_obj.incs());
end
endmodule