Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
lint
/
unused
/
unused-allocation.rs
blob: 1d5727362ea645ef17c22c32160fc57ef2fad6d3 [
file
] [
log
] [
blame
]
#![
deny
(
unused_allocation
)]
fn
main
()
{
_
=
Box
::
new
([
1
]).
len
();
//~ error: unnecessary allocation, use `&` instead
}