Sign in
rust
/
rust-lang
/
rust
/
160e7623e8cbbf1feab2b6e2a24733a98c7bde9c
/
.
/
tests
/
ui
/
allocator
/
two-allocators.rs
blob: aa1291e77aecbb3a495210ef3b318af7078208fc [
file
] [
log
] [
blame
]
use
std
::
alloc
::
System
;
#[
global_allocator
]
static
A
:
System
=
System
;
#[
global_allocator
]
static
B
:
System
=
System
;
//~^ ERROR: cannot define multiple global allocators
fn
main
()
{}