summaryrefslogtreecommitdiffstats
path: root/tests/ui/associated-inherent-types/assoc-inherent-unstable.rs
blob: 152bb7a60a7044beff589bdd16b3026830b9382c (plain)
1
2
3
4
5
6
7
8
9
// aux-crate:aux=assoc-inherent-unstable.rs
// edition: 2021

#![feature(inherent_associated_types)]
#![allow(incomplete_features)]

type Data = aux::Owner::Data; //~ ERROR use of unstable library feature 'data'

fn main() {}