27 lines
492 B
Verilog
27 lines
492 B
Verilog
// Check that binding task arguments by name is supported and that a mix of
|
|
// positional and named arguments is supported.
|
|
|
|
module test;
|
|
|
|
class B;
|
|
integer val;
|
|
|
|
function new(integer a, integer b, integer c);
|
|
val = a + b * 10 + c * 100;
|
|
endfunction
|
|
endclass
|
|
|
|
class C extends B(1, .c(3), .b(2));
|
|
endclass
|
|
|
|
initial begin
|
|
C c;
|
|
c = new;
|
|
if (c.val == 321) begin
|
|
$display("PASSED");
|
|
end else begin
|
|
$display("FAILED");
|
|
end
|
|
end
|
|
endmodule
|