blob: 17e4bf41ddb53930f81973bde0955c078c73e4cb [file] [log] [blame]
#![feature(track_caller)]
trait Trait {
#[track_caller] //~ ERROR: `#[track_caller]` may not be used on trait methods
fn unwrap(&self) {}
}
fn main() {}