mirror of https://github.com/zachjs/sv2v.git
8 lines
135 B
Systemverilog
8 lines
135 B
Systemverilog
|
|
// pattern: could not find "Y" in class "C"
|
||
|
|
class C;
|
||
|
|
localparam X = 10;
|
||
|
|
endclass
|
||
|
|
module top;
|
||
|
|
initial $display(C::Y);
|
||
|
|
endmodule
|