summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-35241.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/issues/issue-35241.stderr')
-rw-r--r--src/test/ui/issues/issue-35241.stderr21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-35241.stderr b/src/test/ui/issues/issue-35241.stderr
new file mode 100644
index 000000000..a66289a1c
--- /dev/null
+++ b/src/test/ui/issues/issue-35241.stderr
@@ -0,0 +1,21 @@
+error[E0308]: mismatched types
+ --> $DIR/issue-35241.rs:3:20
+ |
+LL | struct Foo(u32);
+ | ---------- fn(u32) -> Foo {Foo} defined here
+LL |
+LL | fn test() -> Foo { Foo }
+ | --- ^^^ expected struct `Foo`, found fn item
+ | |
+ | expected `Foo` because of return type
+ |
+ = note: expected struct `Foo`
+ found fn item `fn(u32) -> Foo {Foo}`
+help: use parentheses to instantiate this tuple struct
+ |
+LL | fn test() -> Foo { Foo(_) }
+ | +++
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0308`.