rust/tests/ui/feature-gates/feature-gate-assoc-type-def...

8 lines
134 B
Rust

// gate-test-associated_type_defaults
trait Foo {
type Bar = u8; //~ ERROR associated type defaults are unstable
}
fn main() {}