]> git.lizzy.rs Git - rust.git/blob - tests/ui/lto/thin-lto-global-allocator.rs
Suggest coercion of `Result` using `?`
[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() {}