blob: 76d0cf43984b337adb7c2d39d910a5981b6ea938 [file] [log] [blame]
// run-pass
pub fn main() {
let thing = "{{ f }}";
let f = thing.find("{{");
if f.is_none() {
println!("None!");
}
}