verilator/test_regress/t/t_process_copy_constr.v
Ryszard Rozak 2a905c1d6e
Fix copy constructor of classes that use std::process (#5528)
Signed-off-by: Ryszard Rozak <rrozak@antmicro.com>
2024-10-10 14:40:07 +02:00

26 lines
516 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2024 by Antmicro.
// SPDX-License-Identifier: CC0-1.0
class Cls;
int x = 1;
function new();
int p = process::self();
endfunction
endclass
module t (/*AUTOARG*/
);
initial begin
Cls c, d;
c = new;
c.x = 2;
d = new c;
if (d.x != 2) $stop;
$write("*-* All Finished *-*\n");
$finish;
end
endmodule