aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/rust/compile/torture/mod1.rs
blob: 651678c6a34b2d7503560121e8aff37e7d1bd2bf (plain)
1
2
3
4
5
6
7
8
9
10
11
// This is testing name resolution

mod _foo {
    struct _A;
}

mod _bar {
    mod _barbis {
        struct _B;
    }
}