blob: b41848c8cdf28a78d2e6b11536db2ec200a442b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
error[E0308]: mismatched types
--> $DIR/issue-15896.rs:21:11
|
LL | Tau{t: x},
| ^^^^^^^^^ expected enum `main::R`, found struct `main::Tau`
|
= note: expected type `main::R`
found type `main::Tau`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.
|