mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 17:54:22 +02:00
10 lines
205 B
Systemverilog
10 lines
205 B
Systemverilog
// pattern: required type parameter "Y" in class "C" has not been provided
|
|
class C #(
|
|
parameter type Y
|
|
);
|
|
localparam X = $bits(Y) + 1;
|
|
endclass
|
|
module top;
|
|
initial $display(C#()::X);
|
|
endmodule
|