]> git.proxmox.com Git - rustc.git/blame - src/test/run-pass/option-ext.rs
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / run-pass / option-ext.rs
CommitLineData
223e47cc 1pub fn main() {
1a4d82fc 2 let thing = "{{ f }}";
c34b1796 3 let f = thing.find("{{");
223e47cc
LB
4
5 if f.is_none() {
1a4d82fc 6 println!("None!");
223e47cc
LB
7 }
8}