Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
codemap_tests
/
coherence-overlapping-inherent-impl-trait.rs
blob: 414acfd84ce4e2e6369af9478c52ad6a2686bc9b [
file
] [
log
] [
blame
] [
edit
]
#![
allow
(
dead_code
)]
trait
C
{}
impl
dyn C
{
fn
f
()
{}
}
//~ ERROR duplicate
impl
dyn C
{
fn
f
()
{}
}
fn
main
()
{
}