aboutsummaryrefslogtreecommitdiff
path: root/test/standalone/dep_mutually_recursive/bar.zig
blob: 68957b69e483978683545b76e8b03d6ace5e8f54 (plain)
1
2
3
4
5
6
const assert = @import("std").debug.assert;
pub const foo = @import("foo");

comptime {
    assert(foo.bar == @This());
}