zig/test/behavior/zon/build.zig.zon
Mason Remaley 06ee383da9
compiler: allow @import of ZON without a result type
In particular, this allows importing `build.zig.zon` at comptime.
2025-04-02 05:53:22 +01:00

21 lines
385 B
Zig

.{
// Comment
.name = "temp",
.version = "0.0.0",
.dependencies = .{
.example_0 = .{
.url = "https://example.com/foo.tar.gz",
.hash = "...",
},
.example_1 = .{
.path = "../foo",
.lazy = false,
},
},
.paths = .{
"build.zig",
"build.zig.zon",
"src",
},
}