diff --git a/test_regress/t/t_constraint_unsup.v b/test_regress/t/t_constraint_unsup.v index 3e6974337..ea9221516 100644 --- a/test_regress/t/t_constraint_unsup.v +++ b/test_regress/t/t_constraint_unsup.v @@ -1,21 +1,19 @@ // DESCRIPTION: Verilator: Verilog Test module // -// This file ONLY is placed under the Creative Commons Public Domain. -// SPDX-FileCopyrightText: 2026 Antmicro +// This file ONLY is placed under the Creative Commons Public Domain, for +// any use, without warranty, 2026 by PlanV GmbH. // SPDX-License-Identifier: CC0-1.0 class Packet; - rand real x; - constraint cons { x + 1.0 > 0.0; } + rand real x; + constraint cons { x + 1.0 > 0.0; } endclass module t; + Packet p; - Packet p; - - initial begin - p = new; - void'(p.randomize()); - $finish; - end + initial begin + p = new; + void'(p.randomize()); + end endmodule