mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
13 lines
207 B
Rust
13 lines
207 B
Rust
//@ revisions: cfail1 cfail2
|
|
//@ build-pass
|
|
|
|
#![crate_type="lib"]
|
|
#![crate_type="cdylib"]
|
|
|
|
#[allow(unused_imports)]
|
|
use std::alloc::System;
|
|
|
|
#[cfg(cfail1)]
|
|
#[global_allocator]
|
|
static ALLOC: System = System;
|