Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'crates/ide_completion/src/tests/expression.rs')
| -rw-r--r-- | crates/ide_completion/src/tests/expression.rs | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/crates/ide_completion/src/tests/expression.rs b/crates/ide_completion/src/tests/expression.rs index 5e1fae68fd..a841605e49 100644 --- a/crates/ide_completion/src/tests/expression.rs +++ b/crates/ide_completion/src/tests/expression.rs @@ -30,7 +30,7 @@ fn baz() { } "#, // This should not contain `FooDesc {…}`. - expect![[r##" + expect![[r#" kw unsafe kw match kw while @@ -57,13 +57,13 @@ fn baz() { fn baz() fn() st Unit md _69latrick - ma makro!(…) #[macro_export] macro_rules! makro + ma makro!(…) macro_rules! makro fn function() fn() sc STATIC un Union ev TupleV(…) (u32) ct CONST - "##]], + "#]], ) } @@ -125,7 +125,7 @@ impl Unit { } "#, // `self` is in here twice, once as the module, once as the local - expect![[r##" + expect![[r#" me self.foo() fn(self) kw unsafe kw fn @@ -166,14 +166,14 @@ impl Unit { md module st Unit md qualified - ma makro!(…) #[macro_export] macro_rules! makro + ma makro!(…) macro_rules! makro ?? Unresolved fn function() fn() sc STATIC un Union ev TupleV(…) (u32) ct CONST - "##]], + "#]], ); check( r#" @@ -187,7 +187,7 @@ impl Unit { } } "#, - expect![[r##" + expect![[r#" tt Trait en Enum st Record @@ -195,14 +195,14 @@ impl Unit { md module st Unit md qualified - ma makro!(…) #[macro_export] macro_rules! makro + ma makro!(…) macro_rules! makro ?? Unresolved fn function() fn() sc STATIC un Union ev TupleV(…) (u32) ct CONST - "##]], + "#]], ); } |