summary refs log tree commit diff
path: root/src/test/ui/static_sized_requirement.rs
blob: 074280b7b664651ed7d13393280be6a32c62ee1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// build-pass (FIXME(62277): could be check-pass?)

#![feature(no_core, lang_items)]
#![no_core]
#![crate_type = "lib"]

#[lang = "sized"]
trait Sized {}

extern {
    pub static A: u32;
}