blob: f2c3f0dc59e019abe0838a41bd4766f36f8e7228 [file] [log] [blame]
// run-pass
#![feature(track_caller)] //~ WARN the feature `track_caller` is incomplete
#[track_caller]
fn f() {}
fn main() {
f();
}