]> git.proxmox.com Git - rustc.git/blame - src/test/compile-fail/E0063.rs
New upstream version 1.24.1+dfsg1
[rustc.git] / src / test / compile-fail / E0063.rs
CommitLineData
54a0048b 1// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
223e47cc
LB
2// file at the top-level directory of this distribution and at
3// http://rust-lang.org/COPYRIGHT.
4//
5// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8// option. This file may not be copied, modified, or distributed
9// except according to those terms.
10
9e0c209e
SL
11// ignore-tidy-linelength
12
13struct SingleFoo {
14 x: i32
15}
16
17struct PluralFoo {
18 x: i32,
19 y: i32,
20 z: i32
21}
22
23struct TruncatedFoo {
24 a: i32,
25 b: i32,
3157f602 26 x: i32,
9e0c209e
SL
27 y: i32,
28 z: i32
a7813a04
XL
29}
30
9e0c209e
SL
31struct TruncatedPluralFoo {
32 a: i32,
33 b: i32,
34 c: i32,
35 x: i32,
36 y: i32,
37 z: i32
38}
39
40
a7813a04 41fn main() {
9e0c209e
SL
42 let w = SingleFoo { };
43 //~^ ERROR missing field `x` in initializer of `SingleFoo`
9e0c209e
SL
44 let x = PluralFoo {x: 1};
45 //~^ ERROR missing fields `y`, `z` in initializer of `PluralFoo`
9e0c209e
SL
46 let y = TruncatedFoo{x:1};
47 //~^ missing fields `a`, `b`, `y` and 1 other field in initializer of `TruncatedFoo`
9e0c209e
SL
48 let z = TruncatedPluralFoo{x:1};
49 //~^ ERROR missing fields `a`, `b`, `c` and 2 other fields in initializer of `TruncatedPluralFoo`
54a0048b 50}