mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-01 20:47:36 +00:00
10 lines
257 B
Rust
10 lines
257 B
Rust
// Checks that `-Z instrument-xray` produces expected instrumentation.
|
|
//
|
|
// needs-xray
|
|
// compile-flags: -Z instrument-xray=always -Copt-level=0
|
|
|
|
#![crate_type = "lib"]
|
|
|
|
// CHECK: attributes #{{.*}} "function-instrument"="xray-always"
|
|
pub fn function() {}
|