blob: cf734fb6f68d37c573aae501a9947c99febe7674 [file] [log] [blame]
//@ run-rustfix
use std::rc::Rc;
pub fn main() {
let _x = Rc::new(vec![1, 2]).into_iter();
//~^ ERROR [E0507]
}