rust/tests/ui/attributes/export/lang-item.rs

9 lines
206 B
Rust

#![feature(no_core, lang_items, export_stable)]
#![allow(incomplete_features)]
#![crate_type = "sdylib"]
#![no_core]
#[lang = "sized"]
//~^ ERROR lang items are not allowed in stable dylibs
trait Sized {}