Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide-completion/src/tests/attribute.rs')
-rw-r--r--crates/ide-completion/src/tests/attribute.rs19
1 files changed, 0 insertions, 19 deletions
diff --git a/crates/ide-completion/src/tests/attribute.rs b/crates/ide-completion/src/tests/attribute.rs
index 664bd05e2d..52c69f84b6 100644
--- a/crates/ide-completion/src/tests/attribute.rs
+++ b/crates/ide-completion/src/tests/attribute.rs
@@ -580,25 +580,6 @@ fn attr_on_fn() {
}
#[test]
-fn attr_on_expr() {
- cov_mark::check!(no_keyword_completion_in_attr_of_expr);
- check(
- r#"fn main() { #[$0] foo() }"#,
- expect![[r#"
- at allow(…)
- at cfg(…)
- at cfg_attr(…)
- at deny(…)
- at forbid(…)
- at warn(…)
- kw crate::
- kw self::
- kw super::
- "#]],
- );
-}
-
-#[test]
fn attr_in_source_file_end() {
check(
r#"#[$0]"#,