25 lines
503 B
Verilog
25 lines
503 B
Verilog
// Check that an error is reported when trying to bind an argument by name that
|
|
// is also provided as a positional argument.
|
|
|
|
module test;
|
|
|
|
class B;
|
|
function new(integer a, integer b);
|
|
$display("FAILED");
|
|
endfunction
|
|
endclass
|
|
|
|
class C extends B;
|
|
function new;
|
|
super.new(1, .a(2)); // This should fail. `a` is provided both as a
|
|
// positional and named argument.
|
|
endfunction
|
|
endclass
|
|
|
|
initial begin
|
|
C c;
|
|
c = new;
|
|
end
|
|
|
|
endmodule
|