2016-05-08 21:19:29 +03:00
|
|
|
struct S;
|
|
|
|
|
|
|
|
|
|
impl S {
|
2025-06-30 15:11:34 +02:00
|
|
|
fn f(self: _) {} //~ERROR the placeholder `_` is not allowed within types on item signatures for methods
|
|
|
|
|
fn g(self: &_) {} //~ERROR the placeholder `_` is not allowed within types on item signatures for methods
|
2016-05-08 21:19:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|