rustversion 1.0.22

Conditional compilation according to rustc compiler version
Documentation
1
2
3
4
5
6
7
#[rustversion::any(not)]
struct S;

#[rustversion::any(not, not)]
struct S;

fn main() {}