about summary refs log tree commit diff
path: root/tests/ui/parser/issues/issue-105366.stderr
blob: 225e436b4aa848158cd46c906b998d6275c16a6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: you might have meant to write `impl` instead of `fn`
  --> $DIR/issue-105366.rs:6:1
   |
LL | fn From<i32> for Foo {
   | ^^
   |
help: replace `fn` with `impl` here
   |
LL - fn From<i32> for Foo {
LL + impl From<i32> for Foo {
   |

error: aborting due to 1 previous error