blob: aa8f578adf61eff295986e53944eaf5d491f5e76 [file] [log] [blame]
fn main() {
(0..)
.map(
#[target_feature(enable = "")]
//~^ ERROR: attribute should be applied to a function
#[track_caller]
|_| (),
//~^ NOTE: not a function
)
.next();
}