verilator/test_regress/t/t_display_esc_bad.v

12 lines
304 B
Systemverilog
Raw Normal View History

2019-06-30 21:38:41 +00:00
// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2019 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
2019-06-30 21:38:41 +00:00
module t;
initial begin
$display("\x\y\z"); // Illegal escapes
end
endmodule