os-rust/tests/ui/nll/relate_tys/universe-violation.stderr
Nilstrieb 41e8d152dc Show number in error message even for one error
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
2023-11-24 19:15:52 +01:00

12 lines
419 B
Text

error[E0308]: mismatched types
--> $DIR/universe-violation.rs:13:31
|
LL | let b: fn(&u32) -> &u32 = a;
| ^ one type is more general than the other
|
= note: expected fn pointer `for<'a> fn(&'a u32) -> &'a u32`
found fn pointer `fn(&u32) -> &u32`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0308`.