rust/tests/ui/issues/issue-56835.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

10 lines
253 B
Rust
Raw Normal View History

2018-12-15 04:33:54 +00:00
pub struct Foo {}
impl Foo {
fn bar(Self(foo): Self) {}
2018-12-15 17:31:46 +00:00
//~^ ERROR the `Self` constructor can only be used with tuple or unit structs
//~^^ ERROR expected tuple struct or tuple variant, found self constructor `Self` [E0164]
2018-12-15 04:33:54 +00:00
}
fn main() {}