blob: 92ca1d742e1cb4d53960992200c03cf19c01d65f [file] [log] [blame]
#![feature(no_core, lang_items, export_stable)]
#![allow(incomplete_features)]
#![crate_type = "sdylib"]
#![no_core]
#[lang = "pointee_sized"]
//~^ ERROR lang items are not allowed in stable dylibs
pub trait PointeeSized {}
#[lang = "meta_sized"]
//~^ ERROR lang items are not allowed in stable dylibs
pub trait MetaSized: PointeeSized {}
#[lang = "sized"]
//~^ ERROR lang items are not allowed in stable dylibs
trait Sized {}