about summary refs log tree commit diff
path: root/tests/ui/borrowck/issue-11493.fixed
blob: adf442a266a8a40977a8a4c01d437588d18e44ee (plain)
1
2
3
4
5
6
7
8
9
//@ run-rustfix
fn id<T>(x: T) -> T { x }

fn main() {
    let x = Some(3);
    let binding = id(5);
    let y = x.as_ref().unwrap_or(&binding);  //~ ERROR
    let _ = &y;
}