2020-01-17 02:58:32 +00:00
|
|
|
// run-pass
|
2020-02-08 21:46:57 +00:00
|
|
|
// revisions: default mir-opt
|
2021-03-04 13:21:13 +00:00
|
|
|
//[mir-opt] compile-flags: -Zmir-opt-level=4
|
2020-01-17 02:58:32 +00:00
|
|
|
|
|
|
|
fn pass_to_ptr_call<T>(f: fn(T), x: T) {
|
|
|
|
f(x);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[track_caller]
|
|
|
|
fn tracked_unit(_: ()) {
|
2020-01-19 22:25:43 +00:00
|
|
|
let expected_line = line!() - 1;
|
|
|
|
let location = std::panic::Location::caller();
|
|
|
|
assert_eq!(location.file(), file!());
|
|
|
|
assert_eq!(location.line(), expected_line, "call shims report location as fn definition");
|
2020-01-17 02:58:32 +00:00
|
|
|
}
|
|
|
|
|
2020-02-17 23:36:36 +00:00
|
|
|
trait Trait {
|
|
|
|
fn trait_tracked_unit(_: ());
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Trait for () {
|
|
|
|
#[track_caller]
|
|
|
|
fn trait_tracked_unit(_: ()) {
|
|
|
|
let expected_line = line!() - 1;
|
|
|
|
let location = std::panic::Location::caller();
|
|
|
|
assert_eq!(location.file(), file!());
|
|
|
|
assert_eq!(location.line(), expected_line, "call shims report location as fn definition");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
trait TrackedTrait {
|
|
|
|
#[track_caller]
|
|
|
|
fn trait_tracked_unit_default(_: ()) {
|
|
|
|
let expected_line = line!() - 1;
|
|
|
|
let location = std::panic::Location::caller();
|
|
|
|
assert_eq!(location.file(), file!());
|
|
|
|
assert_eq!(location.line(), expected_line, "call shims report location as fn definition");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl TrackedTrait for () {}
|
|
|
|
|
|
|
|
trait BlanketTrackedTrait {
|
|
|
|
#[track_caller]
|
|
|
|
fn tracked_blanket(_: ());
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BlanketTrackedTrait for () {
|
|
|
|
fn tracked_blanket(_: ()) {
|
|
|
|
let expected_line = line!() - 1;
|
|
|
|
let location = std::panic::Location::caller();
|
|
|
|
assert_eq!(location.file(), file!());
|
|
|
|
assert_eq!(location.line(), expected_line, "call shims report location as fn definition");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-17 02:58:32 +00:00
|
|
|
fn main() {
|
|
|
|
pass_to_ptr_call(tracked_unit, ());
|
2020-02-17 23:36:36 +00:00
|
|
|
pass_to_ptr_call(<() as Trait>::trait_tracked_unit, ());
|
|
|
|
pass_to_ptr_call(<() as TrackedTrait>::trait_tracked_unit_default, ());
|
|
|
|
pass_to_ptr_call(<() as BlanketTrackedTrait>::tracked_blanket, ());
|
2020-01-17 02:58:32 +00:00
|
|
|
}
|