1 // check-pass 2 #![allow(dead_code)] 3 4 // pretty-expanded FIXME #23616 5 6 struct HasNested { 7 nest: Vec<Vec<isize> > , 8 } 9 10 impl HasNested { method_push_local(&mut self)11 fn method_push_local(&mut self) { 12 self.nest[0].push(0); 13 } 14 } 15 main()16 pub fn main() {} 17