30862a64c2
This is required by the check-fast target because each test is slurped up into a submodule.
10 lines
115 B
Rust
10 lines
115 B
Rust
static s: int = 1;
|
|
static e: int = 42;
|
|
|
|
pub fn main() {
|
|
match 7 {
|
|
s..e => (),
|
|
_ => (),
|
|
}
|
|
}
|