blob: fd1b8023a93a3409c149ddd53c96f8bcdddf0eb6 [file] [log] [blame]
/*
:name: this
:description: this keyword test
:should_fail: 0
:tags: 8.11
*/
module class_tb ();
class test_cls;
int a;
task test_method(int a);
$display("test_method");
this.a += a;
endtask
endclass
endmodule