mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
9 lines
195 B
Rust
9 lines
195 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() {
|
|
}
|