Files
rust/tests/ui/impl-trait/rpit/early_bound.stderr
2025-04-03 11:13:10 +02:00

15 lines
442 B
Plaintext

error: concrete type differs from previous defining opaque type use
--> $DIR/early_bound.rs:6:36
|
LL | let _ = identity::<&'a ()>(test(false));
| ^^^^^^^^^^^ expected `()`, got `&()`
|
note: previous use here
--> $DIR/early_bound.rs:3:29
|
LL | fn test<'a: 'a>(n: bool) -> impl Sized + 'a {
| ^^^^^^^^^^^^^^^
error: aborting due to 1 previous error