diff options
Diffstat (limited to 'tests/ui/structs/struct-fields-too-many.rs')
-rw-r--r-- | tests/ui/structs/struct-fields-too-many.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/structs/struct-fields-too-many.rs b/tests/ui/structs/struct-fields-too-many.rs new file mode 100644 index 000000000..8be8dcbf1 --- /dev/null +++ b/tests/ui/structs/struct-fields-too-many.rs @@ -0,0 +1,11 @@ +struct BuildData { + foo: isize, +} + +fn main() { + let foo = BuildData { + foo: 0, + bar: 0 + //~^ ERROR struct `BuildData` has no field named `bar` + }; +} |