summary refs log tree commit diff
path: root/src/test/compile-fail/lint-default-methods.rs
blob: 1350c3e3ad1cd5459245b819f8f89b02487a4b7b (plain)
1
2
3
4
5
6
7
8
#[forbid(default_methods)];

trait Foo { //~ ERROR default methods are experimental
    fn bar(&self) { io::println("hi"); }
}

fn main() {}