Sign in
rust
/
rust
/
1f2b0900a702d4947d8f11ea7b162c3af1626e3c
/
.
/
tests
/
ui
/
error-codes
/
E0152.rs
blob: 53c7c027eff3994e3509a4ae76eb42f05d23f2a0 [
file
]
//@ normalize-stderr: "loaded from .*liballoc-.*.rmeta" -> "loaded from SYSROOT/liballoc-*.rmeta"
#![
feature
(
lang_items
)]
#[
lang
=
"owned_box"
]
struct
Foo
<
T
>(
T
);
//~ ERROR E0152
fn
main
()
{
}