summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-inherent-types/assoc-inherent-private.rs
blob: 531581954438075467790ca56f43bcf6a3f733af (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#![feature(inherent_associated_types)]
#![allow(incomplete_features)]

mod m {
    pub struct T;
    impl T {
        type P = ();
    }
}
type U = m::T::P; //~ ERROR associated type `P` is private

mod n {
    pub mod n {
        pub struct T;
        impl T {
            pub(super) type P = bool;
        }
    }
    type U = n::T::P;
}
type V = n::n::T::P; //~ ERROR associated type `P` is private

fn main() {}