2022-10-02 10:25:49 +09:00
|
|
|
// Checks that `-Z instrument-xray` produces expected instrumentation.
|
|
|
|
//
|
2022-10-02 12:58:05 +09:00
|
|
|
// needs-xray
|
2022-10-02 10:25:49 +09:00
|
|
|
// compile-flags: -Z instrument-xray=always
|
|
|
|
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
|
|
|
|
// CHECK: attributes #{{.*}} "function-instrument"="xray-always"
|
|
|
|
pub fn function() {}
|