aboutsummaryrefslogtreecommitdiff
path: root/src-self-hosted/test.zig
diff options
context:
space:
mode:
authorVexu <15308111+Vexu@users.noreply.github.com>2019-11-07 00:14:15 +0200
committerVexu <15308111+Vexu@users.noreply.github.com>2019-11-07 10:30:47 +0200
commit9394d14815d1a3105f8ea9b3a1a73ea4bc834e7a (patch)
tree34c7fb129d27fba2195d8fe129afe9d962d9542e /src-self-hosted/test.zig
parent6dd4a276de7ea7c283d1d1ef6361a718225022d3 (diff)
downloadzig-9394d14815d1a3105f8ea9b3a1a73ea4bc834e7a.tar.gz
zig-9394d14815d1a3105f8ea9b3a1a73ea4bc834e7a.zip
self hosted compiler: unify Target and std.Target
Diffstat (limited to 'src-self-hosted/test.zig')
-rw-r--r--src-self-hosted/test.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-self-hosted/test.zig b/src-self-hosted/test.zig
index a3dbea6be2..305eb3899a 100644
--- a/src-self-hosted/test.zig
+++ b/src-self-hosted/test.zig
@@ -1,7 +1,7 @@
const std = @import("std");
const mem = std.mem;
const builtin = @import("builtin");
-const Target = @import("target.zig").Target;
+const Target = std.Target;
const Compilation = @import("compilation.zig").Compilation;
const introspect = @import("introspect.zig");
const testing = std.testing;