about summary refs log tree commit diff
path: root/src/test/ui/issues/issue-24036.stderr
blob: e6b8367f74fb56830708e4251c91ed79e4161d6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
error[E0308]: mismatched types
  --> $DIR/issue-24036.rs:3:9
   |
LL |     let mut x = |c| c + 1;
   |                 --------- the expected closure
LL |     x = |c| c + 1;
   |         ^^^^^^^^^ expected closure, found a different closure
   |
   = note: expected closure `[closure@$DIR/issue-24036.rs:2:17: 2:26]`
              found closure `[closure@$DIR/issue-24036.rs:3:9: 3:18]`
   = note: no two closures, even if identical, have the same type
   = help: consider boxing your closure and/or using it as a trait object

error[E0282]: type annotations needed
  --> $DIR/issue-24036.rs:9:15
   |
LL |         1 => |c| c + 1,
   |               ^ consider giving this closure parameter a type

error: aborting due to 2 previous errors

Some errors have detailed explanations: E0282, E0308.
For more information about an error, try `rustc --explain E0282`.