summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-58856-2.stderr
blob: 627dd389059cd78baed0a5970066981ca8dda323 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
error: expected one of `)` or `,`, found `->`
  --> $DIR/issue-58856-2.rs:6:19
   |
LL |     fn how_are_you(&self -> Empty {
   |                   ^     -^^
   |                   |     |
   |                   |     help: `)` may belong here
   |                   unclosed delimiter

error: non-item in item list
  --> $DIR/issue-58856-2.rs:11:1
   |
LL | impl Howness for () {
   |                     - item list starts here
...
LL | }
   | ^
   | |
   | non-item starts here
   | item list ends here

error[E0407]: method `how_are_you` is not a member of trait `Howness`
  --> $DIR/issue-58856-2.rs:6:5
   |
LL | /     fn how_are_you(&self -> Empty {
LL | |
LL | |
LL | |         Empty
LL | |     }
   | |_____^ not a member of trait `Howness`

error: aborting due to 3 previous errors

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