2016-05-08 21:19:29 +03:00
|
|
|
struct S;
|
|
|
|
|
|
|
|
impl S {
|
2022-01-05 11:43:21 +01:00
|
|
|
fn f(self: _) {} //~ERROR the placeholder `_` is not allowed within types on item signatures for functions
|
|
|
|
fn g(self: &_) {} //~ERROR the placeholder `_` is not allowed within types on item signatures for functions
|
2016-05-08 21:19:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|