2020-12-13 02:25:00 +01:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
2026-01-27 02:24:34 +01:00
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain.
|
|
|
|
|
// SPDX-FileCopyrightText: 2019 Stefan Wallentowitz
|
2020-12-13 02:25:00 +01:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
module t;
|
2026-03-08 23:26:40 +01:00
|
|
|
initial begin
|
|
|
|
|
$display("a=", missing.a);
|
|
|
|
|
end
|
|
|
|
|
missing missing (); // Intentionally missing
|
2020-12-13 02:25:00 +01:00
|
|
|
endmodule
|