aboutsummaryrefslogtreecommitdiff
path: root/test/compile_errors.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2023-02-27 14:11:29 -0700
committerAndrew Kelley <andrew@ziglang.org>2023-02-27 16:10:48 -0700
commitd399f8a489dd2ae62fae9b805778bfdc697a969b (patch)
tree60df6836102786a1e665dfc92d815a27d6f8c352 /test/compile_errors.zig
parentb5b634e4e8a2a1fe32fba50ccd175257b4213936 (diff)
parentf6c934677315665c140151b8dd28a56f948205e2 (diff)
downloadzig-d399f8a489dd2ae62fae9b805778bfdc697a969b.tar.gz
zig-d399f8a489dd2ae62fae9b805778bfdc697a969b.zip
Merge remote-tracking branch 'origin/master' into llvm16
Diffstat (limited to 'test/compile_errors.zig')
-rw-r--r--test/compile_errors.zig22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/compile_errors.zig b/test/compile_errors.zig
index 21c8822eb3..e0b78b3000 100644
--- a/test/compile_errors.zig
+++ b/test/compile_errors.zig
@@ -288,4 +288,26 @@ pub fn addCases(ctx: *TestContext) !void {
//, &[_][]const u8{
// "tmp.zig:4:1: error: unable to inline function",
//});
+
+ {
+ const case = ctx.obj("file in multiple modules", .{});
+ case.backend = .stage2;
+
+ case.addSourceFile("foo.zig",
+ \\const dummy = 0;
+ );
+
+ case.addDepModule("foo", "foo.zig");
+
+ case.addError(
+ \\comptime {
+ \\ _ = @import("foo");
+ \\ _ = @import("foo.zig");
+ \\}
+ , &[_][]const u8{
+ ":1:1: error: file exists in multiple modules",
+ ":1:1: note: root of module root.foo",
+ ":3:17: note: imported from module root",
+ });
+ }
}