summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issue-105366.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/parser/issue-105366.stderr')
-rw-r--r--tests/ui/parser/issue-105366.stderr13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/ui/parser/issue-105366.stderr b/tests/ui/parser/issue-105366.stderr
new file mode 100644
index 000000000..0a7408e2c
--- /dev/null
+++ b/tests/ui/parser/issue-105366.stderr
@@ -0,0 +1,13 @@
+error: you might have meant to write `impl` instead of `fn`
+ --> $DIR/issue-105366.rs:5:1
+ |
+LL | fn From<i32> for Foo {
+ | ^^
+ |
+help: replace `fn` with `impl` here
+ |
+LL | impl From<i32> for Foo {
+ | ~~~~
+
+error: aborting due to previous error
+