2024-02-22 06:10:29 -06:00
|
|
|
//@ revisions: cfail1 cfail2
|
|
|
|
//@ build-pass
|
2021-04-16 15:28:54 -05:00
|
|
|
|
|
|
|
#![crate_type="lib"]
|
|
|
|
#![crate_type="cdylib"]
|
|
|
|
|
|
|
|
#[allow(unused_imports)]
|
|
|
|
use std::alloc::System;
|
|
|
|
|
|
|
|
#[cfg(cfail1)]
|
|
|
|
#[global_allocator]
|
|
|
|
static ALLOC: System = System;
|