]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/option-ext.rs
Merge remote-tracking branch 'Dretch/prettydocs'
[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 }