]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-3991.rs
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-3991.rs
CommitLineData
60c5eb7d 1// check-pass
0bf4aa26 2#![allow(dead_code)]
1a4d82fc 3
c34b1796
AL
4// pretty-expanded FIXME #23616
5
223e47cc 6struct HasNested {
c34b1796 7 nest: Vec<Vec<isize> > ,
223e47cc 8}
970d7e83 9
223e47cc 10impl HasNested {
1a4d82fc 11 fn method_push_local(&mut self) {
223e47cc
LB
12 self.nest[0].push(0);
13 }
14}
970d7e83 15
1a4d82fc 16pub fn main() {}