mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
19 lines
194 B
Rust
19 lines
194 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();
|
|
}
|