1 2 3 4 5 6 7
#[forbid(default_methods)]; trait Foo { //~ ERROR default methods are experimental fn bar(&self) { io::println("hi"); } } fn main() {}