rust/tests/ui/allocator/auxiliary/system-allocator.rs
2024-02-16 20:02:50 +00:00

9 lines
120 B
Rust

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