about summary refs log tree commit diff
path: root/tests/ui/binop/issue-77910-1.rs
blob: 4b7ee77b46dc8dd087d58b10894b9df9dfbfc82b (plain)
1
2
3
4
5
6
7
8
9
10
11
fn foo(s: &i32) -> &i32 {
    let xs;
    xs //~ ERROR: isn't initialized
}
fn main() {
    let y;
    // we shouldn't ice with the bound var here.
    assert_eq!(foo, y);
    //~^ ERROR binary operation `==` cannot be applied to type
    //~| ERROR `for<'a> fn(&'a i32) -> &'a i32 {foo}` doesn't implement `Debug`
}