Sign in
android
/
toolchain
/
rustc
/
ff3f07ae99a30006dd85b9d73084edd9355c9db6
/
.
/
src
/
test
/
ui
/
codemap_tests
/
coherence-overlapping-inherent-impl-trait.rs
blob: f35fbad7cd6dfaf7deef18e4bfc0b9def89847fc [
file
] [
log
] [
blame
]
#![
allow
(
dead_code
)]
trait
C
{}
impl
C
{
fn
f
()
{}
}
//~ ERROR duplicate
impl
C
{
fn
f
()
{}
}
fn
main
()
{
}