2021-08-02 14:33:45 +00:00
|
|
|
error[E0784]: union expressions should have exactly one field
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:10:13
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let u = U {};
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^
|
|
|
|
|
2021-08-02 14:33:45 +00:00
|
|
|
error[E0784]: union expressions should have exactly one field
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:12:13
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let u = U { a: 0, b: 1 };
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error[E0560]: union `U` has no field named `c`
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:13:29
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let u = U { a: 0, b: 1, c: 2 };
|
2018-02-18 03:35:59 +00:00
|
|
|
| ^ `U` does not have this field
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
|
|
|
= note: available fields are: `a`, `b`
|
|
|
|
|
2021-08-02 14:33:45 +00:00
|
|
|
error[E0784]: union expressions should have exactly one field
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:13:13
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let u = U { a: 0, b: 1, c: 2 };
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^
|
|
|
|
|
2021-08-02 14:33:45 +00:00
|
|
|
error[E0784]: union expressions should have exactly one field
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:15:13
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let u = U { ..u };
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error[E0436]: functional record update syntax requires a struct
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:15:19
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let u = U { ..u };
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^
|
|
|
|
|
|
|
|
error: union patterns should have exactly one field
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:18:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let U {} = u;
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error: union patterns should have exactly one field
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:20:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let U { a, b } = u;
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^^^^
|
|
|
|
|
|
|
|
error: union patterns should have exactly one field
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:21:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let U { a, b, c } = u;
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
2020-07-09 02:39:26 +00:00
|
|
|
error[E0026]: union `U` does not have a field named `c`
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:21:19
|
2020-07-09 02:39:26 +00:00
|
|
|
|
|
|
|
|
LL | let U { a, b, c } = u;
|
|
|
|
| ^ union `U` does not have this field
|
|
|
|
|
2017-12-10 19:47:55 +00:00
|
|
|
error: union patterns should have exactly one field
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:23:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let U { .. } = u;
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: `..` cannot be used in union patterns
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:23:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let U { .. } = u;
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^^
|
|
|
|
|
|
|
|
error: `..` cannot be used in union patterns
|
2021-05-13 14:42:25 +00:00
|
|
|
--> $DIR/union-fields-2.rs:25:9
|
2017-12-10 19:47:55 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | let U { a, .. } = u;
|
2017-12-10 19:47:55 +00:00
|
|
|
| ^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 13 previous errors
|
|
|
|
|
2021-08-02 14:33:45 +00:00
|
|
|
Some errors have detailed explanations: E0026, E0436, E0560, E0784.
|
2018-03-03 14:59:40 +00:00
|
|
|
For more information about an error, try `rustc --explain E0026`.
|