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