rust/tests/ui/allocator/auxiliary/system-allocator.rs

9 lines
119 B
Rust
Raw Normal View History

// no-prefer-dynamic
#![crate_type = "rlib"]
use std::alloc::System;
#[global_allocator]
static A: System = System;