blob: 0956f2a56918cdffc065749cfce011d302244220 (
plain)
1
2
3
4
5
6
7
8
|
struct S;
impl S {
fn f(self: _) {} //~ERROR the type placeholder `_` is not allowed within types on item sig
fn g(self: &_) {} //~ERROR the type placeholder `_` is not allowed within types on item sig
}
fn main() {}
|