summary refs log tree commit diff
path: root/src/test/ui/empty/empty-struct-braces-pat-1.stderr
blob: 6c361c703440c1a15cf30f747a6f09c7c9b6094b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
error[E0532]: expected unit struct/variant or constant, found struct variant `E::Empty3`
  --> $DIR/empty-struct-braces-pat-1.rs:24:9
   |
LL |         E::Empty3 => ()
   |         ^^^^^^^^^ did you mean `E::Empty3 { /* fields */ }`?

error[E0532]: expected unit struct/variant or constant, found struct variant `XE::XEmpty3`
  --> $DIR/empty-struct-braces-pat-1.rs:31:9
   |
LL |         XE::XEmpty3 => ()
   |         ^^^^-------
   |         |   |
   |         |   help: a unit variant with a similar name exists: `XEmpty4`
   |         did you mean `XE::XEmpty3 { /* fields */ }`?

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0532`.