Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 189 Bytes

File metadata and controls

11 lines (9 loc) · 189 Bytes

#[track_caller] cannot be used to annotate foreign functions.

Erroneous example:

#![feature(track_caller)]
extern "Rust" {
    #[track_caller]
    fn bar();
}