rust/src/test/ui/error-codes/E0152.rs
2020-04-08 10:47:41 +03:00

7 lines
90 B
Rust

#![feature(lang_items)]
#[lang = "owned_box"]
struct Foo; //~ ERROR E0152
fn main() {
}