blob: 8dc611df9d87abc0242b62ea31e4547f500ff13f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
//@ 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;
|