2020-11-28 03:48:42 +00:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
//
|
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
2022-10-20 01:59:26 +00:00
|
|
|
// any use, without warranty, 2022 by Antmicro Ltd.
|
2020-11-28 03:48:42 +00:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
2022-10-20 01:59:26 +00:00
|
|
|
class Cls #(type PARAMB);
|
2020-11-28 03:48:42 +00:00
|
|
|
endclass
|
|
|
|
|
|
|
|
module t (/*AUTOARG*/);
|
|
|
|
|
2022-10-20 01:59:26 +00:00
|
|
|
Cls c; // Missing type param
|
2020-11-28 03:48:42 +00:00
|
|
|
|
|
|
|
endmodule
|