Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
incremental
/
issue-84252-global-alloc.rs
blob: 8dc611df9d87abc0242b62ea31e4547f500ff13f [
file
] [
log
] [
blame
] [
edit
]
//@ revisions: cfail1 cfail2
//@ build-pass
#![
crate_type
=
"lib"
]
#![
crate_type
=
"cdylib"
]
#[
allow
(
unused_imports
)]
use
std
::
alloc
::
System
;
#[
cfg
(
cfail1
)]
#[
global_allocator
]
static
ALLOC
:
System
=
System
;