verilator/test_regress/t/t_constraint_pure_nonabs_bad.v

13 lines
325 B
Systemverilog
Raw Normal View History

2024-11-09 18:05:26 +01:00
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2024 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
class NonAsbstract;
pure constraint raintBad; // Bad: Not in abstract class
endclass
module t;
endmodule