From f8154905e7798aa0e884aa55e9336531f8c2daba Mon Sep 17 00:00:00 2001 From: Veikka Tuominen Date: Tue, 22 Feb 2022 13:22:40 +0200 Subject: stage1: rename TypeInfo.FnArg to Fn.Param --- test/compile_errors.zig | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'test/compile_errors.zig') diff --git a/test/compile_errors.zig b/test/compile_errors.zig index d1971e46bb..580c525dba 100644 --- a/test/compile_errors.zig +++ b/test/compile_errors.zig @@ -450,7 +450,7 @@ pub fn addCases(ctx: *TestContext) !void { \\ .is_generic = true, \\ .is_var_args = false, \\ .return_type = u0, - \\ .args = &[_]@import("std").builtin.TypeInfo.FnArg{}, + \\ .args = &[_]@import("std").builtin.TypeInfo.Fn.Param{}, \\ }, \\}); \\comptime { _ = Foo; } @@ -466,7 +466,7 @@ pub fn addCases(ctx: *TestContext) !void { \\ .is_generic = false, \\ .is_var_args = true, \\ .return_type = u0, - \\ .args = &[_]@import("std").builtin.TypeInfo.FnArg{}, + \\ .args = &[_]@import("std").builtin.TypeInfo.Fn.Param{}, \\ }, \\}); \\comptime { _ = Foo; } @@ -482,7 +482,7 @@ pub fn addCases(ctx: *TestContext) !void { \\ .is_generic = false, \\ .is_var_args = false, \\ .return_type = null, - \\ .args = &[_]@import("std").builtin.TypeInfo.FnArg{}, + \\ .args = &[_]@import("std").builtin.TypeInfo.Fn.Param{}, \\ }, \\}); \\comptime { _ = Foo; } -- cgit v1.2.3