Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
713605cadef845b9f44d6469208fb6e902ace095
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-8
/
8.11--this.sv
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