Remove uses of box_syntax in rustc and tools

This commit is contained in:
clubby789 2023-02-27 13:07:44 +00:00
parent 15b867b5db
commit c6da2f9d96

View file

@ -857,9 +857,9 @@ mod lint {
#[test] #[test]
fn lint_feature() { fn lint_feature() {
check_edit( check_edit(
"box_syntax", "box_patterns",
r#"#[feature(box_$0)] struct Test;"#, r#"#[feature(box_$0)] struct Test;"#,
r#"#[feature(box_syntax)] struct Test;"#, r#"#[feature(box_patterns)] struct Test;"#,
) )
} }