blob: aa8f578adf61eff295986e53944eaf5d491f5e76 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
fn main() {
(0..)
.map(
#[target_feature(enable = "")]
//~^ ERROR: attribute should be applied to a function
#[track_caller]
|_| (),
//~^ NOTE: not a function
)
.next();
}
|