verilator/test_regress/t/t_preproc_defarg_bad.v
2020-09-19 10:30:31 -04:00

20 lines
315 B
Systemverilog

// DESCRIPTION: Verilator: Verilog Test module
//
// This file ONLY is placed under the Creative Commons Public Domain, for
// any use, without warranty, 2010 by Wilson Snyder.
// SPDX-License-Identifier: CC0-1.0
//See bug289
`define A1(x)
`define A2(x,y)
`A1
`A1(1,2)
`A2
`A2(1)
`A2(1,2,3)
module t;
endmodule