mirror of https://github.com/rust-lang/rust
17 lines
368 B
Rust
17 lines
368 B
Rust
// Regression test for ICE #118144
|
|
|
|
struct V(i32);
|
|
|
|
fn func(func_arg: &mut V) {
|
|
|| {
|
|
// Declaring `x` separately instead of using
|
|
// a destructuring binding like `let V(x) = ...`
|
|
// becaue only `V(x) = ...` triggers the ICE
|
|
let x;
|
|
V(x) = func_arg; //~ ERROR: mismatched types
|
|
func_arg.0 = 0;
|
|
};
|
|
}
|
|
|
|
fn main() {}
|