rust/tests/ui/attributes/export/lang-item.rs
2025-05-04 22:03:15 +03:00

8 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 {}