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-14 22:33:54 -06:00
pub struct Foo {}
impl Foo {
fn bar(Self(foo): Self) {}
2018-12-15 11:31:46 -06: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-14 22:33:54 -06:00
}
fn main() {}