]> git.lizzy.rs Git - rust.git/blob - src/test/ui/option-ext.rs
Rollup merge of #63356 - ali-raheem:issue#63183, r=KodrAus
[rust.git] / src / test / ui / option-ext.rs
1 // run-pass
2
3 pub fn main() {
4     let thing = "{{ f }}";
5     let f = thing.find("{{");
6
7     if f.is_none() {
8         println!("None!");
9     }
10 }