rust/tests/ui/lto/lto-thin-rustc-loads-linker-plugin.rs
2023-01-11 09:32:08 +00:00

14 lines
304 B
Rust

// compile-flags: -C lto=thin
// aux-build:lto-rustc-loads-linker-plugin.rs
// run-pass
// no-prefer-dynamic
// Same as the adjacent `lto-thin-rustc-loads-linker-plugin.rs` test, only with
// ThinLTO.
extern crate lto_rustc_loads_linker_plugin;
fn main() {
lto_rustc_loads_linker_plugin::foo();
}