diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2022-07-01 15:52:54 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2022-07-01 15:52:54 -0700 |
| commit | c89dd15e1be4959800dc7092d7dd4375253db7bc (patch) | |
| tree | ca184ae53592efa21e67128a5f891d642d7f1118 /src/link/tapi/parse | |
| parent | 5466e87fce581f2ef90ac23bb80b1dbc05836fc6 (diff) | |
| parent | 2360f8c490f3ec684ed64ff28e8c1fade249070b (diff) | |
| download | zig-c89dd15e1be4959800dc7092d7dd4375253db7bc.tar.gz zig-c89dd15e1be4959800dc7092d7dd4375253db7bc.zip | |
Merge remote-tracking branch 'origin/master' into llvm14
Diffstat (limited to 'src/link/tapi/parse')
| -rw-r--r-- | src/link/tapi/parse/test.zig | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/link/tapi/parse/test.zig b/src/link/tapi/parse/test.zig index fc0bed5df6..b310a5c0bd 100644 --- a/src/link/tapi/parse/test.zig +++ b/src/link/tapi/parse/test.zig @@ -1,8 +1,10 @@ const std = @import("std"); const mem = std.mem; const testing = std.testing; -const Tree = @import("../parse.zig").Tree; -const Node = @import("../parse.zig").Node; +const parse = @import("../parse.zig"); + +const Node = parse.Node; +const Tree = parse.Tree; test "explicit doc" { const source = |
