summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-56835.stderr
blob: c200ba8d52a32d585186ed640cf2ea9c34541d3b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: the `Self` constructor can only be used with tuple or unit structs
  --> $DIR/issue-56835.rs:4:12
   |
LL |     fn bar(Self(foo): Self) {}
   |            ^^^^^^^^^ help: use curly brackets: `Self { /* fields */ }`

error[E0164]: expected tuple struct or tuple variant, found self constructor `Self`
  --> $DIR/issue-56835.rs:4:12
   |
LL |     fn bar(Self(foo): Self) {}
   |            ^^^^^^^^^ not a tuple variant or struct

error: aborting due to 2 previous errors

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