]> git.lizzy.rs Git - rust.git/blob - tests/ui/lto/thin-lto-global-allocator.rs
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[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() {}