2022-10-02 10:25:49 +09:00
|
|
|
// Checks that the last `-Z instrument-xray` option wins.
|
|
|
|
//
|
2022-10-02 12:58:05 +09:00
|
|
|
// needs-xray
|
2022-10-02 10:25:49 +09:00
|
|
|
// 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() {}
|