rust/tests/ui/macros/issue-68060.rs
2023-01-11 09:32:08 +00:00

16 lines
485 B
Rust

fn main() {
(0..)
.map(
#[target_feature(enable = "")]
//~^ ERROR: attribute should be applied to a function
//~| ERROR: feature named `` is not valid
//~| NOTE: `` is not valid for this target
#[track_caller]
//~^ ERROR: `#[track_caller]` on closures is currently unstable
//~| NOTE: see issue #87417
|_| (),
//~^ NOTE: not a function
)
.next();
}