blob: 9fb273ea9991f3bfadfbc47ada9a74b9a99f0276 [file] [log] [blame]
/*
:name: var_protected
:description: class with protected variable
:should_fail: 0
:tags: 8.18
*/
module class_tb ();
class a_cls;
protected int a_prot = 2;
endclass
endmodule