Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
issues
/
issue-18446-2.rs
blob: d403487c001fb24a1737af34547a6e6e27341f67 [
file
] [
log
] [
blame
]
//@ check-pass
#![
allow
(
dead_code
)]
// Test that methods in trait impls should override default methods.
trait
T
{
fn
foo
(&
self
)
->
i32
{
0
}
}
impl
<
'a> dyn T + '
a
{
fn
foo
(&
self
)
->
i32
{
1
}
}
fn
main
()
{}