2017-12-10 13:47:55 -06:00
|
|
|
error: union expressions should have exactly one field
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:7:13
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let u = U {}; //~ ERROR union expressions should have exactly one field
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: union expressions should have exactly one field
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:9:13
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let u = U { a: 0, b: 1 }; //~ ERROR union expressions should have exactly one field
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error[E0560]: union `U` has no field named `c`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:10:29
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-24 17:59:34 -06:00
|
|
|
LL | let u = U { a: 0, b: 1, c: 2 }; //~ ERROR union expressions should have exactly one field
|
2018-02-17 21:35:59 -06:00
|
|
|
| ^ `U` does not have this field
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
|
= note: available fields are: `a`, `b`
|
|
|
|
|
|
|
|
error: union expressions should have exactly one field
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:10:13
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let u = U { a: 0, b: 1, c: 2 }; //~ ERROR union expressions should have exactly one field
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: union expressions should have exactly one field
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:12:13
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let u = U { ..u }; //~ ERROR union expressions should have exactly one field
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error[E0436]: functional record update syntax requires a struct
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:12:19
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let u = U { ..u }; //~ ERROR union expressions should have exactly one field
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: union patterns should have exactly one field
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:15:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let U {} = u; //~ ERROR union patterns should have exactly one field
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: union patterns should have exactly one field
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:17:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let U { a, b } = u; //~ ERROR union patterns should have exactly one field
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0026]: union `U` does not have a field named `c`
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:18:19
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let U { a, b, c } = u; //~ ERROR union patterns should have exactly one field
|
2018-03-19 16:13:57 -05:00
|
|
|
| ^ union `U` does not have this field
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
|
|
error: union patterns should have exactly one field
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:18:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let U { a, b, c } = u; //~ ERROR union patterns should have exactly one field
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: union patterns should have exactly one field
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:20:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let U { .. } = u; //~ ERROR union patterns should have exactly one field
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: `..` cannot be used in union patterns
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:20:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let U { .. } = u; //~ ERROR union patterns should have exactly one field
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: `..` cannot be used in union patterns
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/union-fields-2.rs:22:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2018-02-22 18:42:32 -06:00
|
|
|
LL | let U { a, .. } = u; //~ ERROR `..` cannot be used in union patterns
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 13 previous errors
|
|
|
|
|
2018-03-03 08:59:40 -06:00
|
|
|
Some errors occurred: E0026, E0436, E0560.
|
|
|
|
For more information about an error, try `rustc --explain E0026`.
|