2019-11-06 00:00:00 +00:00
|
|
|
// check-pass
|
2018-09-25 21:51:35 +00:00
|
|
|
#![allow(dead_code)]
|
2014-03-05 23:28:08 +00:00
|
|
|
|
2015-03-22 20:13:15 +00:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2013-03-21 22:00:29 +00:00
|
|
|
struct HasNested {
|
2015-03-26 00:06:52 +00:00
|
|
|
nest: Vec<Vec<isize> > ,
|
2013-03-21 22:00:29 +00:00
|
|
|
}
|
2013-05-03 23:25:04 +00:00
|
|
|
|
2013-03-21 22:00:29 +00:00
|
|
|
impl HasNested {
|
2013-09-02 13:30:00 +00:00
|
|
|
fn method_push_local(&mut self) {
|
2014-11-06 17:25:16 +00:00
|
|
|
self.nest[0].push(0);
|
2013-03-21 22:00:29 +00:00
|
|
|
}
|
|
|
|
}
|
2013-05-03 23:25:04 +00:00
|
|
|
|
2013-09-25 07:43:37 +00:00
|
|
|
pub fn main() {}
|