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