mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-28 12:17:43 +00:00
9 lines
197 B
Rust
9 lines
197 B
Rust
//@ normalize-stderr-test: "loaded from .*liballoc-.*.rlib" -> "loaded from SYSROOT/liballoc-*.rlib"
|
|
#![feature(lang_items)]
|
|
|
|
#[lang = "owned_box"]
|
|
struct Foo<T>(T); //~ ERROR E0152
|
|
|
|
fn main() {
|
|
}
|