blob: f701c403799426ef6e290714b6a609d8663bf36a [file] [log] [blame] [edit]
//@ run-rustfix
fn main() {
let x = "com.example.app";
let y: Option<&str> = None;
let _s = y.unwrap_or_else(|| x.split('.').nth(1).unwrap());
//~^ ERROR: mismatched types [E0308]
}