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.
|
2024-04-17 12:30:45 +02:00
|
|
|
#[lang = "owned_box"] //~ ERROR lang item must be applied to a struct
|
2018-10-11 19:36:51 +02:00
|
|
|
static X: u32 = 42;
|
|
|
|
|
|
|
|
|
|
fn main() {}
|