about summary refs log tree commit diff
path: root/tests/ui/attributes/export/lang-item.rs
blob: 92ca1d742e1cb4d53960992200c03cf19c01d65f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![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 {}