mirror of
https://github.com/rust-lang/rust-analyzer.git
synced 2025-09-27 12:29:21 +00:00
7 lines
128 B
Rust
7 lines
128 B
Rust
impl S {
|
|
fn a(self) {}
|
|
fn b(&self,) {}
|
|
fn c(&'a self,) {}
|
|
fn d(&'a mut self, x: i32) {}
|
|
fn e(mut self) {}
|
|
}
|