summary refs log tree commit diff
path: root/src/test/run-pass/option-ext.rs
blob: 0b21b8e5b5a6ccf594908b463f0dd7f9f75654c6 (plain)
1
2
3
4
5
6
7
8
pub fn main() {
    let thing = "{{ f }}";
    let f = thing.find("{{");

    if f.is_none() {
        println!("None!");
    }
}