rust/src/test/run-pass/option-ext.rs
2018-12-25 21:08:33 -07:00

9 lines
130 B
Rust

pub fn main() {
let thing = "{{ f }}";
let f = thing.find("{{");
if f.is_none() {
println!("None!");
}
}