summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-35241.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/issues/issue-35241.stderr21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/issues/issue-35241.stderr b/src/test/ui/issues/issue-35241.stderr
deleted file mode 100644
index 42a78ed97..000000000
--- a/src/test/ui/issues/issue-35241.stderr
+++ /dev/null
@@ -1,21 +0,0 @@
-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 construct this tuple struct
- |
-LL | fn test() -> Foo { Foo(/* u32 */) }
- | +++++++++++
-
-error: aborting due to previous error
-
-For more information about this error, try `rustc --explain E0308`.