aboutsummaryrefslogtreecommitdiff
path: root/tests/data/parser/inline/0055_self_param.rs
blob: 7bb1ca50c0894cd80743f2d5eb8ca8c338df770f (plain)
1
2
3
4
5
6
impl S {
    fn a(self) {}
    fn b(&self,) {}
    fn c(&'a self,) {}
    fn d(&'a mut self, x: i32) {}
}