Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
tests
/
incremental
/
issue-84252-global-alloc.rs
blob: f035f209daa570c96f121b4fb3e76342ac290cd9 [
file
]
//@ revisions: bpass1 bpass2
//@ needs-crate-type: cdylib
#![
crate_type
=
"lib"
]
#![
crate_type
=
"cdylib"
]
#[
allow
(
unused_imports
)]
use
std
::
alloc
::
System
;
#[
cfg
(
bpass1
)]
#[
global_allocator
]
static
ALLOC
:
System
=
System
;