2019-07-27 00:54:25 +03:00
|
|
|
// run-pass
|
|
|
|
|
2018-09-14 12:20:28 +02:00
|
|
|
#![allow(dead_code)]
|
2015-03-22 13:13:15 -07:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2012-12-23 17:41:37 -05:00
|
|
|
pub mod a {
|
|
|
|
pub fn f() {}
|
|
|
|
pub mod b {
|
|
|
|
fn g() {
|
|
|
|
super::f();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-01 19:43:17 -08:00
|
|
|
pub fn main() {
|
2012-12-23 17:41:37 -05:00
|
|
|
}
|