]> git.lizzy.rs Git - rust.git/blob - src/test/ui/thin-lto-global-allocator.rs
Auto merge of #85556 - FabianWolff:issue-85071, r=estebank,jackh726
[rust.git] / src / test / ui / 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() {}