2020-06-02 14:00:37 +02: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: 2022 Antmicro Ltd
|
2020-06-02 14:00:37 +02:00
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
|
|
|
|
module x;
|
2026-03-10 02:38:29 +01:00
|
|
|
typedef struct {int fst, snd;} uselessA_t;
|
2020-06-02 14:00:37 +02:00
|
|
|
|
2026-03-10 02:38:29 +01:00
|
|
|
typedef struct {
|
|
|
|
|
bit [3:0] n;
|
|
|
|
|
uselessA_t b;
|
|
|
|
|
} uselessB_t;
|
2020-06-02 14:00:37 +02:00
|
|
|
|
2026-03-10 02:38:29 +01:00
|
|
|
uselessA_t useless;
|
2020-06-02 14:00:37 +02:00
|
|
|
|
2026-03-10 02:38:29 +01:00
|
|
|
initial begin
|
|
|
|
|
$write("*-* All Finished *-*\n");
|
|
|
|
|
$finish;
|
|
|
|
|
end
|
2020-06-02 14:00:37 +02:00
|
|
|
endmodule
|