7 lines
136 B
Rust
7 lines
136 B
Rust
fn main() {
|
|
match Some("hi".to_string()) {
|
|
Some(s) if s.len() == 0 => {},
|
|
//~^ ERROR E0008
|
|
_ => {},
|
|
}
|
|
}
|