]> git.lizzy.rs Git - rust.git/blob - tests/ui/lto/thin-lto-global-allocator.rs
Auto merge of #106711 - albertlarsan68:use-ci-llvm-when-lld, r=jyn514
[rust.git] / tests / ui / lto / thin-lto-global-allocator.rs
1 // run-pass
2 // compile-flags: -Z thinlto -C codegen-units=2
3
4 #[global_allocator]
5 static A: std::alloc::System = std::alloc::System;
6
7 fn main() {}