mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
10 lines
257 B
Rust
10 lines
257 B
Rust
//@ revisions:cfail1 cfail2
|
|
//@ compile-flags: -Z query-dep-graph --crate-type rlib -C linker-plugin-lto -O
|
|
//@ no-prefer-dynamic
|
|
//@ build-pass
|
|
|
|
#![feature(rustc_attrs)]
|
|
#![rustc_partition_reused(module = "lto_in_linker", cfg = "cfail2")]
|
|
|
|
pub fn foo() {}
|