diff options
Diffstat (limited to 'tests/ui/issues/issue-56835.stderr')
-rw-r--r-- | tests/ui/issues/issue-56835.stderr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/issues/issue-56835.stderr b/tests/ui/issues/issue-56835.stderr new file mode 100644 index 000000000..e949ae7b3 --- /dev/null +++ b/tests/ui/issues/issue-56835.stderr @@ -0,0 +1,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 struct or tuple variant + +error: aborting due to 2 previous errors + +For more information about this error, try `rustc --explain E0164`. |