]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/issue-105366.stderr
Account for ADT bodies and struct expressions
[rust.git] / src / test / ui / parser / issue-105366.stderr
1 error: you might have meant to write `impl` instead of `fn`
2   --> $DIR/issue-105366.rs:5:1
3    |
4 LL | fn From<i32> for Foo {
5    | ^^
6    |
7 help: replace `fn` with `impl` here
8    |
9 LL | impl From<i32> for Foo {
10    | ~~~~
11
12 error: aborting due to previous error
13