summary refs log tree commit diff
path: root/src/test/run-pass/super.rs
blob: e378aac8be4138d2650aea57a4ab67f2ab0b6710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(dead_code)]
// pretty-expanded FIXME #23616

pub mod a {
    pub fn f() {}
    pub mod b {
        fn g() {
            super::f();
        }
    }
}

pub fn main() {
}