aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/comptime_continue_inside_runtime_switch.zig
diff options
context:
space:
mode:
Diffstat (limited to 'test/cases/compile_errors/comptime_continue_inside_runtime_switch.zig')
-rw-r--r--test/cases/compile_errors/comptime_continue_inside_runtime_switch.zig5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/cases/compile_errors/comptime_continue_inside_runtime_switch.zig b/test/cases/compile_errors/comptime_continue_inside_runtime_switch.zig
index 391ecbdf1a..6a23da4cb6 100644
--- a/test/cases/compile_errors/comptime_continue_inside_runtime_switch.zig
+++ b/test/cases/compile_errors/comptime_continue_inside_runtime_switch.zig
@@ -1,5 +1,6 @@
export fn entry() void {
var p: i32 = undefined;
+ _ = &p;
comptime var q = true;
inline while (q) {
switch (p) {
@@ -14,5 +15,5 @@ export fn entry() void {
// backend=stage2
// target=native
//
-// :6:19: error: comptime control flow inside runtime block
-// :5:17: note: runtime control flow here
+// :7:19: error: comptime control flow inside runtime block
+// :6:17: note: runtime control flow here