8 lines
128 B
Rust
Raw Normal View History

2018-07-31 18:03:50 +03:00
impl S {
fn a(self) {}
fn b(&self,) {}
2018-07-31 20:48:45 +03:00
fn c(&'a self,) {}
fn d(&'a mut self, x: i32) {}
2018-08-24 01:19:38 +03:00
fn e(mut self) {}
2018-07-31 18:03:50 +03:00
}