rust/src/test/ui/issues/issue-37026.stderr

22 lines
672 B
Plaintext
Raw Normal View History

2018-07-15 14:11:54 -07:00
error[E0308]: mismatched types
2018-12-25 08:56:47 -07:00
--> $DIR/issue-37026.rs:6:9
2018-07-15 14:11:54 -07:00
|
2019-03-09 15:03:44 +03:00
LL | let empty_struct::XEmpty2 = ();
2018-07-15 14:11:54 -07:00
| ^^^^^^^^^^^^^^^^^^^^^ expected (), found struct `empty_struct::XEmpty2`
|
= note: expected type `()`
found type `empty_struct::XEmpty2`
error[E0308]: mismatched types
2018-12-25 08:56:47 -07:00
--> $DIR/issue-37026.rs:7:9
2018-07-15 14:11:54 -07:00
|
2019-03-09 15:03:44 +03:00
LL | let empty_struct::XEmpty6(..) = ();
2018-07-15 14:11:54 -07:00
| ^^^^^^^^^^^^^^^^^^^^^^^^^ expected (), found struct `empty_struct::XEmpty6`
|
= note: expected type `()`
found type `empty_struct::XEmpty6`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.