One more test

This commit is contained in:
Kirill Bulatov 2020-09-11 00:20:13 +03:00
parent 208d4609b0
commit b477f99bd9

View file

@ -242,6 +242,8 @@ fn main() {
r#"let res = <|>dbg!(a + b).foo();"#, r#"let res = <|>dbg!(a + b).foo();"#,
r#"let res = (a + b).foo();"#, r#"let res = (a + b).foo();"#,
); );
check_assist(remove_dbg, r#"let res = <|>dbg!(2 + 2) * 5"#, r#"let res = (2 + 2) * 5"#);
} }
#[test] #[test]