use std::alloc::System;
#[global_allocator]
static A: System = System;
static B: System = System;
//~^ ERROR: cannot define multiple global allocators
fn main() {}