2017-12-10 13:47:55 -06:00
|
|
|
error: union expressions should have exactly one field
|
|
|
|
--> $DIR/union-fields-2.rs:17:13
|
|
|
|
|
|
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
|
|
|
|
--> $DIR/union-fields-2.rs:19:13
|
|
|
|
|
|
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`
|
|
|
|
--> $DIR/union-fields-2.rs:20:29
|
|
|
|
|
|
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
|
|
|
|
--> $DIR/union-fields-2.rs:20:13
|
|
|
|
|
|
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
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/union-fields-2.rs:22: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
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/union-fields-2.rs:22: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
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/union-fields-2.rs:25: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
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/union-fields-2.rs:27: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`
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/union-fields-2.rs:28: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
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^ union `U` does not have field `c`
|
|
|
|
|
|
|
|
error: union patterns should have exactly one field
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/union-fields-2.rs:28: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
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/union-fields-2.rs:30: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
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/union-fields-2.rs:30: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
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/union-fields-2.rs:32: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-02-19 14:40:25 -06:00
|
|
|
You've got a few errors: E0026, E0436, E0560
|
|
|
|
If you want more information on an error, try using "rustc --explain E0026"
|