blob: 42bf0aae5b12ce0bb6e6d5fbd1f71c8aa4d2bb24 [file] [log] [blame]
error[E0308]: mismatched types
--> $DIR/issue-35241.rs:13:20
|
LL | fn test() -> Foo { Foo } //~ ERROR mismatched types
| --- ^^^
| | |
| | expected struct `Foo`, found fn item
| | did you mean `Foo(/* fields */)`?
| expected `Foo` because of return type
|
= note: expected type `Foo`
found type `fn(u32) -> Foo {Foo::{{constructor}}}`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0308`.