mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
19 lines
195 B
Rust
19 lines
195 B
Rust
//@ run-pass
|
|
|
|
fn vec() {
|
|
let mut _x = vec!['c'];
|
|
let _y = &_x;
|
|
_x = Vec::new();
|
|
}
|
|
|
|
fn int() {
|
|
let mut _x = 5;
|
|
let _y = &_x;
|
|
_x = 7;
|
|
}
|
|
|
|
fn main() {
|
|
vec();
|
|
int();
|
|
}
|