Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide_completion/src/tests/item.rs')
| -rw-r--r-- | crates/ide_completion/src/tests/item.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/crates/ide_completion/src/tests/item.rs b/crates/ide_completion/src/tests/item.rs index e77082ebb8..d94fab2f5f 100644 --- a/crates/ide_completion/src/tests/item.rs +++ b/crates/ide_completion/src/tests/item.rs @@ -87,6 +87,7 @@ fn after_struct_name() { r"struct Struct $0", expect![[r##" kw pub(crate) + kw pub(super) kw pub kw unsafe kw fn @@ -120,6 +121,7 @@ fn after_fn_name() { r"fn func() $0", expect![[r##" kw pub(crate) + kw pub(super) kw pub kw unsafe kw fn @@ -157,6 +159,7 @@ struct Foo { "#, expect![[r#" kw pub(crate) + kw pub(super) kw pub "#]], ) |