blob: e756521701a45f1184209eb9457792eed2f3e718 [file] [log] [blame]
//@ check-pass
#![feature(final_associated_functions)]
trait Foo {
final fn bar(&self) {}
}
impl Foo for () {}
fn main() {
().bar();
}