]> git.lizzy.rs Git - rust.git/blob - tests/ui/issues/issue-3991.rs
Rollup merge of #106046 - uweigand:s390x-test-bigendian-mir, r=Mark-Simulacrum
[rust.git] / tests / ui / issues / issue-3991.rs
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 {
11     fn method_push_local(&mut self) {
12         self.nest[0].push(0);
13     }
14 }
15
16 pub fn main() {}