summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/relate_tys/universe-violation.stderr
blob: 6f38154e37927861ead9ad05de3aa7108eb1bd4e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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<'r> fn(&'r u32) -> &'r u32`
              found fn pointer `fn(&u32) -> &u32`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.