verilator/test_regress/t/t_class_uses_this_bad.v

16 lines
369 B
Systemverilog
Raw Normal View History

2020-10-08 11:54:01 +00:00
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2020 Rafal Kapuscik
// SPDX-License-Identifier: CC0-1.0
//
2024-10-07 23:14:41 +00:00
module t(/*AUTOARG*/);
2020-10-08 11:54:01 +00:00
bit [3:0] addr;
initial begin
this.addr = 2;
$write("*-* All Finished *-*\n");
$finish;
end
endmodule