rust/src/test/ui/structs/struct-field-cfg.stderr

31 lines
1.1 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0063]: missing field `present` in initializer of `Foo`
2018-12-25 09:56:47 -06:00
--> $DIR/struct-field-cfg.rs:7:13
2018-08-08 07:28:26 -05:00
|
LL | let _ = Foo { #[cfg(any())] present: () };
| ^^^ missing `present`
error[E0560]: struct `Foo` has no field named `absent`
2018-12-25 09:56:47 -06:00
--> $DIR/struct-field-cfg.rs:10:46
2018-08-08 07:28:26 -05:00
|
LL | let _ = Foo { present: (), #[cfg(all())] absent: () };
| ^^^^^^ `Foo` does not have this field
|
= note: available fields are: `present`
error[E0027]: pattern does not mention field `present`
2018-12-25 09:56:47 -06:00
--> $DIR/struct-field-cfg.rs:13:9
2018-08-08 07:28:26 -05:00
|
LL | let Foo { #[cfg(any())] present: () } = foo;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ missing field `present`
error[E0026]: struct `Foo` does not have a field named `absent`
2018-12-25 09:56:47 -06:00
--> $DIR/struct-field-cfg.rs:16:42
2018-08-08 07:28:26 -05:00
|
LL | let Foo { present: (), #[cfg(all())] absent: () } = foo;
| ^^^^^^^^^^ struct `Foo` does not have this field
error: aborting due to 4 previous errors
Some errors occurred: E0026, E0027, E0063, E0560.
For more information about an error, try `rustc --explain E0026`.