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