2025-02-24 09:26:54 +00:00
|
|
|
//@ add-core-stubs
|
|
|
|
|
//@ check-pass
|
2018-10-15 20:48:25 +02:00
|
|
|
|
|
|
|
|
#![feature(no_core, lang_items)]
|
|
|
|
|
#![no_core]
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
|
2025-02-24 09:26:54 +00:00
|
|
|
extern crate minicore;
|
|
|
|
|
use minicore::*;
|
2018-10-15 20:48:25 +02:00
|
|
|
|
2020-09-01 17:12:52 -04:00
|
|
|
extern "C" {
|
2018-10-15 20:48:25 +02:00
|
|
|
pub static A: u32;
|
|
|
|
|
}
|