mirror of
https://github.com/zachjs/sv2v.git
synced 2026-08-31 09:44:27 +02:00
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
|