blob: d3e49d53174428dad08d97fec891080c3ae409c7 (
plain)
1
2
3
4
5
6
7
8
9
|
// Checks that `-Z instrument-xray` produces expected instrumentation.
//
// needs-xray
// compile-flags: -Z instrument-xray=always
#![crate_type = "lib"]
// CHECK: attributes #{{.*}} "function-instrument"="xray-always"
pub fn function() {}
|