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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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;