]> git.proxmox.com Git - rustc.git/blob - src/test/compile-fail/E0063.rs
New upstream version 1.13.0+dfsg1
[rustc.git] / src / test / compile-fail / E0063.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
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
11 // ignore-tidy-linelength
12
13 struct SingleFoo {
14 x: i32
15 }
16
17 struct PluralFoo {
18 x: i32,
19 y: i32,
20 z: i32
21 }
22
23 struct TruncatedFoo {
24 a: i32,
25 b: i32,
26 x: i32,
27 y: i32,
28 z: i32
29 }
30
31 struct TruncatedPluralFoo {
32 a: i32,
33 b: i32,
34 c: i32,
35 x: i32,
36 y: i32,
37 z: i32
38 }
39
40
41 fn main() {
42 let w = SingleFoo { };
43 //~^ ERROR missing field `x` in initializer of `SingleFoo`
44 //~| NOTE missing `x`
45 let x = PluralFoo {x: 1};
46 //~^ ERROR missing fields `y`, `z` in initializer of `PluralFoo`
47 //~| NOTE missing `y`, `z`
48 let y = TruncatedFoo{x:1};
49 //~^ missing fields `a`, `b`, `y` and 1 other field in initializer of `TruncatedFoo`
50 //~| NOTE `a`, `b`, `y` and 1 other field
51 let z = TruncatedPluralFoo{x:1};
52 //~^ ERROR missing fields `a`, `b`, `c` and 2 other fields in initializer of `TruncatedPluralFoo`
53 //~| NOTE missing `a`, `b`, `c` and 2 other fields
54 }