rust/src/test/ui/self/self-infer.rs
2020-02-27 15:59:08 -08:00

8 lines
227 B
Rust

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