Vendor things
This commit is contained in:
parent
5deceec006
commit
977e3c17e5
19434 changed files with 10682014 additions and 0 deletions
20
third-party/vendor/rustversion/tests/test_eval.rs
vendored
Normal file
20
third-party/vendor/rustversion/tests/test_eval.rs
vendored
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
#[rustversion::any(
|
||||
stable,
|
||||
stable(1.34),
|
||||
stable(1.34.0),
|
||||
beta,
|
||||
nightly,
|
||||
nightly(2020-02-25),
|
||||
since(1.34),
|
||||
since(2020-02-25),
|
||||
before(1.34),
|
||||
before(2020-02-25),
|
||||
not(nightly),
|
||||
all(stable, beta, nightly),
|
||||
)]
|
||||
fn success() {}
|
||||
|
||||
#[test]
|
||||
fn test() {
|
||||
success();
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue