Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
713605cadef845b9f44d6469208fb6e902ace095
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-8
/
8.5--parameters.sv
blob: 3f7dbe5ceb744116f2448f1b617462d8d461911b [
file
] [
log
] [
blame
]
/*
:name: parameters
:description: parametrized class test
:should_fail: 0
:tags: 8.5 8.25
*/
module
class_tb
();
class
test_cls
#(parameter a = 12);
endclass
test_cls
#(34) test_obj;
initial
begin
test_obj
=
new
;
$display
(
test_cls
.
a
);
end
endmodule