7 lines
90 B
Rust
7 lines
90 B
Rust
#![feature(lang_items)]
|
|
|
|
#[lang = "owned_box"]
|
|
struct Foo; //~ ERROR E0152
|
|
|
|
fn main() {
|
|
}
|