9 lines
113 B
Rust
9 lines
113 B
Rust
fn main() {
|
|
match 3 {
|
|
t if match t {
|
|
_ => true,
|
|
} => {},
|
|
_ => {}
|
|
}
|
|
}
|