blob: f82eb338f4c68835a94f21697e469ae62ffd22c3 [file] [log] [blame]
fn main() {
(0..)
.map(
#[target_feature(enable = "")]
//~^ ERROR: attribute should be applied to a function
//~| ERROR: the feature named `` is not valid for this target
//~| NOTE: `` is not valid for this target
#[track_caller]
//~^ ERROR: `#[track_caller]` requires Rust ABI [E0737]
|_| (),
//~^ NOTE: not a function
)
.next();
}