mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
12 lines
288 B
Rust
12 lines
288 B
Rust
fn foo(s: &i32) -> &i32 {
|
|
let xs;
|
|
xs
|
|
}
|
|
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`
|
|
}
|