blob: 660a32e0407b4caf0d68f4a0a7fe1dfa840c36f7 [file] [log] [blame]
/*
:name: parameters
:description: parametrized class test
:should_fail: 0
:tags: 8.5 8.25
:type: simulation parsing
*/
module class_tb ();
class test_cls #(parameter a = 12);
endclass
test_cls #(34) test_obj;
initial begin
test_obj = new;
$display(":assert:(%d == 34)", test_cls.a);
end
endmodule