13 lines
147 B
Rust
13 lines
147 B
Rust
//@ check-pass
|
|
|
|
#![feature(final_associated_functions)]
|
|
|
|
trait Foo {
|
|
final fn bar(&self) {}
|
|
}
|
|
|
|
impl Foo for () {}
|
|
|
|
fn main() {
|
|
().bar();
|
|
}
|