mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-25 00:03:43 +00:00
16 lines
329 B
Rust
16 lines
329 B
Rust
|
fn with(f: &fn(&~str)) {}
|
||
|
|
||
|
fn arg_item(&_x: &~str) {}
|
||
|
//~^ ERROR cannot move out of dereference of & pointer
|
||
|
|
||
|
fn arg_closure() {
|
||
|
with(|&_x| ())
|
||
|
//~^ ERROR cannot move out of dereference of & pointer
|
||
|
}
|
||
|
|
||
|
fn let_pat() {
|
||
|
let &_x = &~"hi";
|
||
|
//~^ ERROR cannot move out of dereference of & pointer
|
||
|
}
|
||
|
|
||
|
pub fn main() {}
|