Sign in
rust
/
rust
/
97b1c314892ef4497c0ce5656daa3a54c4e052d3
/
.
/
tests
/
ui
/
traits
/
final
/
works.rs
blob: e756521701a45f1184209eb9457792eed2f3e718 [
file
]
//@ check-pass
#![
feature
(
final_associated_functions
)]
trait
Foo
{
final
fn
bar
(&
self
)
{}
}
impl
Foo
for
()
{}
fn
main
()
{
().
bar
();
}