summaryrefslogtreecommitdiffstats
path: root/tests/ui/feature-gates/feature-gate-assoc-type-defaults.rs
blob: d7c6a9f97ad34da21e06ea3cda0f3e04ee379249 (plain)
1
2
3
4
5
6
7
// gate-test-associated_type_defaults

trait Foo {
    type Bar = u8; //~ ERROR associated type defaults are unstable
}

fn main() {}