aboutsummaryrefslogtreecommitdiff
path: root/test/cases/compile_errors/reify_struct.zig
diff options
context:
space:
mode:
authorVeikka Tuominen <git@vexu.eu>2022-12-18 19:33:15 +0200
committerGitHub <noreply@github.com>2022-12-18 19:33:15 +0200
commit40ed6ae8469fd599f0524d294f38365c3bb8a825 (patch)
tree6e37bbb58fef1ca3aae06e65e179dfa017cb7929 /test/cases/compile_errors/reify_struct.zig
parente9e804edc899d8392c9f93a19b92be603c26df79 (diff)
parent2a5e1426aa9469fadb78e837d0100d689213b034 (diff)
downloadzig-40ed6ae8469fd599f0524d294f38365c3bb8a825.tar.gz
zig-40ed6ae8469fd599f0524d294f38365c3bb8a825.zip
Merge pull request #13930 from r00ster91/renamings
std.builtin: renamings
Diffstat (limited to 'test/cases/compile_errors/reify_struct.zig')
-rw-r--r--test/cases/compile_errors/reify_struct.zig10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/cases/compile_errors/reify_struct.zig b/test/cases/compile_errors/reify_struct.zig
index 1c6001ced6..42b8e42af5 100644
--- a/test/cases/compile_errors/reify_struct.zig
+++ b/test/cases/compile_errors/reify_struct.zig
@@ -3,7 +3,7 @@ comptime {
.layout = .Auto,
.fields = &.{.{
.name = "foo",
- .field_type = u32,
+ .type = u32,
.default_value = null,
.is_comptime = false,
.alignment = 4,
@@ -17,7 +17,7 @@ comptime {
.layout = .Auto,
.fields = &.{.{
.name = "3",
- .field_type = u32,
+ .type = u32,
.default_value = null,
.is_comptime = false,
.alignment = 4,
@@ -31,7 +31,7 @@ comptime {
.layout = .Auto,
.fields = &.{.{
.name = "0",
- .field_type = u32,
+ .type = u32,
.default_value = null,
.is_comptime = true,
.alignment = 4,
@@ -45,7 +45,7 @@ comptime {
.layout = .Extern,
.fields = &.{.{
.name = "0",
- .field_type = u32,
+ .type = u32,
.default_value = null,
.is_comptime = true,
.alignment = 4,
@@ -59,7 +59,7 @@ comptime {
.layout = .Packed,
.fields = &.{.{
.name = "0",
- .field_type = u32,
+ .type = u32,
.default_value = null,
.is_comptime = true,
.alignment = 4,