rust/src/test/ui/option-ext.rs
2019-07-27 18:56:16 +03:00

11 lines
143 B
Rust

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