rust/tests/ui/rfcs/rfc-2091-track-caller/pass.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
141 B
Rust
Raw Normal View History

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