summaryrefslogtreecommitdiffstats
path: root/tests/ui/inference/need_type_info/issue-113264-incorrect-impl-trait-in-path-suggestion.stderr
blob: 0ec219415ab0782a70ded822eaff9c994ff6bed6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0282]: type annotations needed
  --> $DIR/issue-113264-incorrect-impl-trait-in-path-suggestion.rs:10:16
   |
LL |     (S {}).owo(None)
   |                ^^^^ cannot infer type of the type parameter `T` declared on the enum `Option`
   |
help: consider specifying the generic argument
   |
LL |     (S {}).owo(None::<&_>)
   |                    ++++++

error: aborting due to previous error

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