mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
15 lines
289 B
Rust
15 lines
289 B
Rust
use std::rc::Rc;
|
|
use std::sync::Arc;
|
|
|
|
struct Bar { field: Vec<i32> }
|
|
|
|
fn main() {
|
|
let x = Rc::new(Bar { field: vec![] });
|
|
drop(x.field);
|
|
//~^ ERROR cannot move out of an `Rc`
|
|
|
|
let y = Arc::new(Bar { field: vec![] });
|
|
drop(y.field);
|
|
//~^ ERROR cannot move out of an `Arc`
|
|
}
|