rust/src/test/run-pass/option-ext.rs

8 lines
154 B
Rust
Raw Normal View History

fn main(args: ~[~str]) {
let thing = ~"{{ f }}";
let f = str::find_str(thing, ~"{{");
if f.is_none() {
io::println(~"None!");
}
}