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() {}
|