summary refs log tree commit diff
path: root/src/test/run-pass/thin-lto-global-allocator.rs
blob: 18869cf66da81417505a1c89681047f6907a587b (plain)
1
2
3
4
5
6
// compile-flags: -Z thinlto -C codegen-units=2

#[global_allocator]
static A: std::alloc::System = std::alloc::System;

fn main() {}