2018-10-11 19:36:51 +02:00
|
|
|
#![feature(lang_items)]
|
|
|
|
|
|
2020-04-08 04:26:48 +03:00
|
|
|
// Box is expected to be a struct, so this will error.
|
|
|
|
|
#[lang = "owned_box"] //~ ERROR language item must be applied to a struct
|
2018-10-11 19:36:51 +02:00
|
|
|
static X: u32 = 42;
|
|
|
|
|
|
|
|
|
|
fn main() {}
|