test: add tests for variant kinds of SelfParam in inline_call

This commit is contained in:
roife 2024-01-17 13:50:50 +08:00
parent d48498f360
commit 920e99aacb

View File

@ -759,7 +759,7 @@ fn add(&self, a: u32) -> Self {
fn main() {
let x = {
let ref this = Foo(3);
let this = &Foo(3);
Foo(this.0 + 2)
};
}
@ -795,7 +795,7 @@ fn add<T>(&self, a: u32) -> Self {
fn main() {
let x = {
let ref this = Foo(3);
let this = &Foo(3);
Foo(this.0 + 2)
};
}
@ -833,7 +833,7 @@ fn clear(&mut self) {
fn main() {
let mut foo = Foo(3);
{
let ref mut this = foo;
let this = &mut foo;
this.0 = 0;
};
}
@ -920,7 +920,7 @@ fn foo(&self) {
}
fn bar(&self) {
{
let ref this = self;
let this = &self;
this;
this;
};
@ -1595,7 +1595,7 @@ fn a_or_b_eq(&self) -> bool {
fn a() -> bool {
{
let ref this = Enum::A;
let this = &Enum::A;
this == &Enum::A || this == &Enum::B
}
}
@ -1657,6 +1657,82 @@ fn main() {
a as A
};
}
"#,
)
}
#[test]
fn method_by_reborrow() {
check_assist(
inline_call,
r#"
pub struct Foo(usize);
impl Foo {
fn add1(&mut self) {
self.0 += 1;
}
}
pub fn main() {
let f = &mut Foo(0);
f.add1$0();
}
"#,
r#"
pub struct Foo(usize);
impl Foo {
fn add1(&mut self) {
self.0 += 1;
}
}
pub fn main() {
let f = &mut Foo(0);
{
let this = &mut *f;
this.0 += 1;
};
}
"#,
)
}
#[test]
fn method_by_mut() {
check_assist(
inline_call,
r#"
pub struct Foo(usize);
impl Foo {
fn add1(mut self) {
self.0 += 1;
}
}
pub fn main() {
let mut f = Foo(0);
f.add1$0();
}
"#,
r#"
pub struct Foo(usize);
impl Foo {
fn add1(mut self) {
self.0 += 1;
}
}
pub fn main() {
let mut f = Foo(0);
{
let mut this = f;
this.0 += 1;
};
}
"#,
)
}