rust/tests/data/parser/inline/0055_self_param.rs

6 lines
80 B
Rust
Raw Normal View History

2018-07-31 10:03:50 -05:00
impl S {
fn a(self) {}
fn b(&self,) {}
fn c(&mut self, x: i32) {}
}