rust/src/test/ui/issues/issue-56835.rs

10 lines
244 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
2018-12-14 22:33:54 -06:00
//~^^ ERROR expected tuple struct/variant, found self constructor `Self` [E0164]
}
fn main() {}