summaryrefslogtreecommitdiffstats
path: root/src/test/ui/static/static_sized_requirement.rs
blob: 3943b260854079ebcf86b629733c471ca94e07fc (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 "C" {
    pub static A: u32;
}