1
0
Fork 0
firefox/third_party/rust/rustversion/tests/test_eval.rs
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

20 lines
307 B
Rust

#[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();
}