summary refs log tree commit diff
path: root/src/test/ui/issues/issue-35241.stderr
blob: 8fda58abadb6ee26c015c56c723c0e76a877f6d4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error[E0308]: mismatched types
  --> $DIR/issue-35241.rs:3:20
   |
LL | fn test() -> Foo { Foo }
   |              ---   ^^^
   |              |     |
   |              |     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}`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.