summary refs log tree commit diff
path: root/src/test/ui/self/self-infer.rs
blob: cc17d8f8e3962e59f2d3782367c7eb6f63603132 (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 signatures for functions
    fn g(self: &_) {} //~ERROR the type placeholder `_` is not allowed within types on item signatures for functions
}

fn main() {}