2023-02-07 13:13:55 +01:00
|
|
|
// DESCRIPTION: Verilator: Verilog Test module
|
|
|
|
|
//
|
|
|
|
|
// This file ONLY is placed under the Creative Commons Public Domain, for
|
|
|
|
|
// any use, without warranty, 2023 by Antmicro Ltd.
|
|
|
|
|
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
|
|
2024-11-11 02:00:16 +01:00
|
|
|
package Foo;
|
2023-02-07 13:13:55 +01:00
|
|
|
endpackage
|
|
|
|
|
|
2024-11-11 02:00:16 +01:00
|
|
|
package Bar;
|
2023-02-07 13:13:55 +01:00
|
|
|
static int baz;
|
|
|
|
|
endpackage
|
|
|
|
|
|
|
|
|
|
module t;
|
2024-11-11 02:00:16 +01:00
|
|
|
int baz = Foo::Bar::baz;
|
2023-02-07 13:13:55 +01:00
|
|
|
endmodule
|