rustc/tests/codegen/instrument-xray/options-override.rs
2023-09-11 11:26:34 +02:00

12 lines
347 B
Rust

// Checks that the last `-Z instrument-xray` option wins.
//
// needs-xray
// compile-flags: -Z instrument-xray=always
// compile-flags: -Z instrument-xray=never
#![crate_type = "lib"]
// CHECK: attributes #{{.*}} "function-instrument"="xray-never"
// CHECK-NOT: attributes #{{.*}} "function-instrument"="xray-always"
pub fn function() {}