summary refs log tree commit diff
path: root/tests/ui/static/static_sized_requirement.rs
blob: 80f93dea0544e2ea4d26016cd38788a3d965057e (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;
}