2016-05-08 13:19:29 -05:00
|
|
|
struct S;
|
|
|
|
|
|
|
|
impl S {
|
2022-01-05 04:43:21 -06: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 13:19:29 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
fn main() {}
|