2019-10-15 00:20:50 +00:00
|
|
|
error[E0532]: expected tuple struct or tuple variant, found struct `Empty1`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/empty-struct-braces-pat-2.rs:15:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-09-22 18:27:55 +00:00
|
|
|
LL | struct Empty1 {}
|
|
|
|
| ---------------- `Empty1` defined here
|
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | Empty1() => ()
|
2020-07-10 00:42:07 +00:00
|
|
|
| ^^^^^^^^
|
2021-06-10 11:52:00 +00:00
|
|
|
|
|
2020-08-10 03:29:39 +00:00
|
|
|
::: $DIR/auxiliary/empty-struct.rs:3:1
|
2020-07-10 00:42:07 +00:00
|
|
|
|
|
2020-08-10 03:29:39 +00:00
|
|
|
LL | pub struct XEmpty6();
|
2022-02-13 15:27:59 +00:00
|
|
|
| ------------------ similarly named tuple struct `XEmpty6` defined here
|
2020-07-10 00:42:07 +00:00
|
|
|
|
|
|
|
|
help: use struct pattern syntax instead
|
|
|
|
|
|
|
|
|
LL | Empty1 {} => ()
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~~~
|
2020-08-10 03:29:39 +00:00
|
|
|
help: a tuple struct with a similar name exists
|
|
|
|
|
|
|
|
|
LL | XEmpty6() => ()
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-10-15 00:20:50 +00:00
|
|
|
error[E0532]: expected tuple struct or tuple variant, found struct `XEmpty1`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/empty-struct-braces-pat-2.rs:18:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | XEmpty1() => ()
|
2020-07-10 00:42:07 +00:00
|
|
|
| ^^^^^^^^^
|
2021-06-10 11:52:00 +00:00
|
|
|
|
|
2020-08-10 04:14:59 +00:00
|
|
|
::: $DIR/auxiliary/empty-struct.rs:1:1
|
2020-07-10 00:42:07 +00:00
|
|
|
|
|
2020-08-10 04:14:59 +00:00
|
|
|
LL | pub struct XEmpty1 {}
|
|
|
|
| ------------------ `XEmpty1` defined here
|
|
|
|
LL | pub struct XEmpty2;
|
2020-08-10 03:29:39 +00:00
|
|
|
LL | pub struct XEmpty6();
|
2022-02-13 15:27:59 +00:00
|
|
|
| ------------------ similarly named tuple struct `XEmpty6` defined here
|
2020-07-10 00:42:07 +00:00
|
|
|
|
|
|
|
|
help: use struct pattern syntax instead
|
|
|
|
|
|
|
|
|
LL | XEmpty1 {} => ()
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~~~~
|
2020-08-10 03:29:39 +00:00
|
|
|
help: a tuple struct with a similar name exists
|
|
|
|
|
|
|
|
|
LL | XEmpty6() => ()
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-10-15 00:20:50 +00:00
|
|
|
error[E0532]: expected tuple struct or tuple variant, found struct `Empty1`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/empty-struct-braces-pat-2.rs:21:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-09-22 18:27:55 +00:00
|
|
|
LL | struct Empty1 {}
|
|
|
|
| ---------------- `Empty1` defined here
|
|
|
|
...
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | Empty1(..) => ()
|
2020-07-10 00:42:07 +00:00
|
|
|
| ^^^^^^^^^^
|
2021-06-10 11:52:00 +00:00
|
|
|
|
|
2020-08-10 03:29:39 +00:00
|
|
|
::: $DIR/auxiliary/empty-struct.rs:3:1
|
2020-07-10 00:42:07 +00:00
|
|
|
|
|
2020-08-10 03:29:39 +00:00
|
|
|
LL | pub struct XEmpty6();
|
2022-02-13 15:27:59 +00:00
|
|
|
| ------------------ similarly named tuple struct `XEmpty6` defined here
|
2020-07-10 00:42:07 +00:00
|
|
|
|
|
|
|
|
help: use struct pattern syntax instead
|
|
|
|
|
|
|
|
|
LL | Empty1 {} => ()
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~~~
|
2020-08-10 03:29:39 +00:00
|
|
|
help: a tuple struct with a similar name exists
|
|
|
|
|
|
|
|
|
LL | XEmpty6(..) => ()
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~
|
2018-08-08 12:28:26 +00:00
|
|
|
|
2019-10-15 00:20:50 +00:00
|
|
|
error[E0532]: expected tuple struct or tuple variant, found struct `XEmpty1`
|
2018-12-25 15:56:47 +00:00
|
|
|
--> $DIR/empty-struct-braces-pat-2.rs:24:9
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
2019-03-09 12:03:44 +00:00
|
|
|
LL | XEmpty1(..) => ()
|
2020-07-10 00:42:07 +00:00
|
|
|
| ^^^^^^^^^^^
|
2021-06-10 11:52:00 +00:00
|
|
|
|
|
2020-08-10 04:14:59 +00:00
|
|
|
::: $DIR/auxiliary/empty-struct.rs:1:1
|
2020-07-10 00:42:07 +00:00
|
|
|
|
|
2020-08-10 04:14:59 +00:00
|
|
|
LL | pub struct XEmpty1 {}
|
|
|
|
| ------------------ `XEmpty1` defined here
|
|
|
|
LL | pub struct XEmpty2;
|
2020-08-10 03:29:39 +00:00
|
|
|
LL | pub struct XEmpty6();
|
2022-02-13 15:27:59 +00:00
|
|
|
| ------------------ similarly named tuple struct `XEmpty6` defined here
|
2020-07-10 00:42:07 +00:00
|
|
|
|
|
|
|
|
help: use struct pattern syntax instead
|
|
|
|
|
|
|
|
|
LL | XEmpty1 {} => ()
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~~~~
|
2020-08-10 03:29:39 +00:00
|
|
|
help: a tuple struct with a similar name exists
|
|
|
|
|
|
|
|
|
LL | XEmpty6(..) => ()
|
2021-06-22 02:07:19 +00:00
|
|
|
| ~~~~~~~
|
2018-08-08 12:28:26 +00:00
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0532`.
|