Sign in
foss-fpga-tools
/
third_party
/
Surelog
/
e911119afa19222dc9bbad9ba934f3d965e34302
/
.
/
SVIncCompil
/
Testcases
/
Google
/
chapter-8
/
8.19--instance_constant.sv
blob: 6835a754a35a705c143c7167dc9a2a6bc160e81e [
file
] [
log
] [
blame
]
/*
:name: instance_constant
:description: class with instance constant variable
:should_fail: 0
:tags: 8.19
*/
module
class_tb
();
class
a_cls
;
const
int
c
;
function
new
(
int
val
);
c
=
20
*
val
;
endfunction
endclass
endmodule