diff options
| author | clubby789 <jamie@hill-daniel.co.uk> | 2023-02-27 13:07:44 +0000 |
|---|---|---|
| committer | clubby789 <jamie@hill-daniel.co.uk> | 2023-03-12 13:19:46 +0000 |
| commit | c6da2f9d96a71bee04d194a85ed76edb0259db5b (patch) | |
| tree | 9d38cc927ee63f25b6568ba55b4337391d2bb35a | |
| parent | 15b867b5db35d67e0f1026b55f22ba6b25ad6dcb (diff) | |
| download | rust-c6da2f9d96a71bee04d194a85ed76edb0259db5b.tar.gz rust-c6da2f9d96a71bee04d194a85ed76edb0259db5b.zip | |
Remove uses of `box_syntax` in rustc and tools
| -rw-r--r-- | crates/ide-completion/src/tests/attribute.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/crates/ide-completion/src/tests/attribute.rs b/crates/ide-completion/src/tests/attribute.rs index 4e60820dd6d..c97144b61b6 100644 --- a/crates/ide-completion/src/tests/attribute.rs +++ b/crates/ide-completion/src/tests/attribute.rs @@ -857,9 +857,9 @@ mod lint { #[test] fn lint_feature() { check_edit( - "box_syntax", + "box_patterns", r#"#[feature(box_$0)] struct Test;"#, - r#"#[feature(box_syntax)] struct Test;"#, + r#"#[feature(box_patterns)] struct Test;"#, ) } |
