]> git.proxmox.com Git - rustc.git/blob - src/test/run-pass/super.rs
Merge tag 'debian/0.6-0_exp1'
[rustc.git] / src / test / run-pass / super.rs
1 pub mod a {
2 pub fn f() {}
3 pub mod b {
4 fn g() {
5 super::f();
6 }
7 }
8 }
9
10 pub fn main() {
11 }
12