blob: 6a7623538194c438e2040d2528f38e694e337f50 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/typeck_type_placeholder_mismatch.rs:23:21
|
LL | let x: Foo<_> = Bar::<usize>(PhantomData);
| ^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `Foo`, found struct `Bar`
|
= note: expected type `Foo<_>`
found type `Bar<usize>`
error[E0308]: mismatched types
--> $DIR/typeck_type_placeholder_mismatch.rs:32:21
|
LL | let x: Foo<_> = Bar::<usize>(PhantomData);
| ^^^^^^^^^^^^^^^^^^^^^^^^^ expected struct `Foo`, found struct `Bar`
|
= note: expected type `Foo<_>`
found type `Bar<usize>`
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0308`.