rust/tests/ui/empty/empty-struct-tuple-pat.stderr

60 lines
1.8 KiB
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0530]: match bindings cannot shadow tuple structs
2018-12-25 15:56:47 +00:00
--> $DIR/empty-struct-tuple-pat.rs:22:9
2018-08-08 12:28:26 +00:00
|
LL | struct Empty2();
| ---------------- the tuple struct `Empty2` is defined here
2018-08-08 12:28:26 +00:00
...
2019-03-09 12:03:44 +00:00
LL | Empty2 => ()
| ^^^^^^
| |
| cannot be named the same as a tuple struct
| help: try specify the pattern arguments: `Empty2(..)`
2018-08-08 12:28:26 +00:00
error[E0530]: match bindings cannot shadow tuple structs
2018-12-25 15:56:47 +00:00
--> $DIR/empty-struct-tuple-pat.rs:25:9
2018-08-08 12:28:26 +00:00
|
LL | use empty_struct::*;
| --------------- the tuple struct `XEmpty6` is imported here
2018-08-08 12:28:26 +00:00
...
2019-03-09 12:03:44 +00:00
LL | XEmpty6 => ()
| ^^^^^^^
| |
| cannot be named the same as a tuple struct
| help: try specify the pattern arguments: `XEmpty6(..)`
2018-08-08 12:28:26 +00:00
error[E0532]: expected unit struct, unit variant or constant, found tuple variant `E::Empty4`
2018-12-25 15:56:47 +00:00
--> $DIR/empty-struct-tuple-pat.rs:29:9
2018-08-08 12:28:26 +00:00
|
LL | Empty4()
| -------- `E::Empty4` defined here
...
2018-08-08 12:28:26 +00:00
LL | E::Empty4 => ()
| ^^^^^^^^^ help: use the tuple variant pattern syntax instead: `E::Empty4()`
2018-08-08 12:28:26 +00:00
error[E0532]: expected unit struct, unit variant or constant, found tuple variant `XE::XEmpty5`
2018-12-25 15:56:47 +00:00
--> $DIR/empty-struct-tuple-pat.rs:33:9
2018-08-08 12:28:26 +00:00
|
LL | XE::XEmpty5 => (),
| ^^^^^^^^^^^
|
::: $DIR/auxiliary/empty-struct.rs:7:5
|
LL | XEmpty4,
| ------- similarly named unit variant `XEmpty4` defined here
LL | XEmpty5(),
| ------- `XE::XEmpty5` defined here
|
help: use the tuple variant pattern syntax instead
|
LL | XE::XEmpty5() => (),
| ~~~~~~~~~~~~~
help: a unit variant with a similar name exists
|
LL | XE::XEmpty4 => (),
| ~~~~~~~
2018-08-08 12:28:26 +00:00
error: aborting due to 4 previous errors
Some errors have detailed explanations: E0530, E0532.
2018-08-08 12:28:26 +00:00
For more information about an error, try `rustc --explain E0530`.