rust/tests/ui/rfc-2091-track-caller/pass.rs
2023-01-11 09:32:08 +00:00

11 lines
138 B
Rust

// run-pass
// revisions: default mir-opt
//[mir-opt] compile-flags: -Zmir-opt-level=4
#[track_caller]
fn f() {}
fn main() {
f();
}