mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-29 15:48:52 +00:00

Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
18 lines
356 B
Rust
18 lines
356 B
Rust
//@ run-pass
|
|
#![allow(unused_assignments)]
|
|
#![allow(unused_variables)]
|
|
// Check that the type checker permits us to reassign `z` which
|
|
// started out with a longer lifetime and was reassigned to a shorter
|
|
// one (it should infer to be the intersection).
|
|
|
|
|
|
fn foo(x: &isize) {
|
|
let a = 1;
|
|
let mut z = x;
|
|
z = &a;
|
|
}
|
|
|
|
pub fn main() {
|
|
foo(&1);
|
|
}
|