]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/option-ext.rs
Merge tag 'release-0.3.1' into incoming
[rust.git] / src / test / run-pass / option-ext.rs
1 fn main(args: ~[~str]) {
2     let thing = ~"{{ f }}";
3     let f = str::find_str(thing, ~"{{");
4
5     if f.is_none() {
6         io::println(~"None!");
7     }
8 }