rust/tests/ui/borrowck/borrowck-move-out-of-overloaded-deref.rs
2023-01-11 09:32:08 +00:00

7 lines
119 B
Rust

use std::rc::Rc;
pub fn main() {
let _x = *Rc::new("hi".to_string());
//~^ ERROR cannot move out of an `Rc`
}