Skip to content

Commit a90abd6

Browse files
committed
Remove feature(box_syntax) from unused allocation list test
1 parent 7f5338a commit a90abd6

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
#![feature(box_syntax)]
1+
#![feature(rustc_attrs, stmt_expr_attributes)]
22
#![deny(unused_allocation)]
33

44
fn main() {
5-
_ = (box [1]).len(); //~ error: unnecessary allocation, use `&` instead
5+
_ = (#[rustc_box] Box::new([1])).len(); //~ error: unnecessary allocation, use `&` instead
66
_ = Box::new([1]).len(); //~ error: unnecessary allocation, use `&` instead
77
}

tests/ui/lint/unused/unused-allocation.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
error: unnecessary allocation, use `&` instead
22
--> $DIR/unused-allocation.rs:5:9
33
|
4-
LL | _ = (box [1]).len();
5-
| ^^^^^^^^^
4+
LL | _ = (#[rustc_box] Box::new([1])).len();
5+
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
66
|
77
note: the lint level is defined here
88
--> $DIR/unused-allocation.rs:2:9

0 commit comments

Comments
 (0)