summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-inherent-types/auxiliary/assoc-inherent-unstable.rs
blob: 6b71ffc97b57a1d479d897716e2955ab798b987c (plain)
1
2
3
4
5
6
7
8
9
10
11
#![feature(staged_api)]
#![feature(inherent_associated_types)]
#![stable(feature = "main", since = "1.0.0")]

#[stable(feature = "main", since = "1.0.0")]
pub struct Owner;

impl Owner {
    #[unstable(feature = "data", issue = "none")]
    pub type Data = ();
}