]> git.lizzy.rs Git - rust.git/blob - src/test/ui/static/static_sized_requirement.rs
Auto merge of #102717 - beetrees:repr128-c-style-debuginfo, r=nagisa
[rust.git] / src / test / ui / static / static_sized_requirement.rs
1 // build-pass (FIXME(62277): could be check-pass?)
2
3 #![feature(no_core, lang_items)]
4 #![no_core]
5 #![crate_type = "lib"]
6
7 #[lang = "sized"]
8 trait Sized {}
9
10 extern "C" {
11     pub static A: u32;
12 }