mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
13 lines
345 B
Rust
13 lines
345 B
Rust
// When conflicts between by-move bindings in `by_move_1 @ has_by_move` patterns
|
|
// happen and that code is unreachable according to borrowck, we accept this code.
|
|
// In particular, we want to ensure here that an ICE does not happen, which it did originally.
|
|
|
|
// check-pass
|
|
|
|
fn main() {
|
|
return;
|
|
|
|
struct S;
|
|
let a @ (b, c) = (S, S);
|
|
}
|