2019-11-20 01:23:40 +01:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
|
|
|
|
// This file ONLY is placed into the Public Domain, for any use,
|
2020-03-21 16:24:24 +01:00
|
|
|
// without warranty, 2019.
|
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
2019-11-20 01:23:40 +01:00
|
|
|
|
2025-09-13 15:28:43 +02:00
|
|
|
module t;
|
2019-11-20 01:23:40 +01:00
|
|
|
|
|
|
|
|
typedef logic [3:0] foo_t;
|
|
|
|
|
|
|
|
|
|
foo_t foo_s;
|
|
|
|
|
|
|
|
|
|
assign bar_s = {foo_s, foo_s}.f1;
|
|
|
|
|
|
|
|
|
|
endmodule
|