about summary refs log tree commit diff
path: root/src/test/ui/codemap_tests/coherence-overlapping-inherent-impl-trait.rs
blob: f35fbad7cd6dfaf7deef18e4bfc0b9def89847fc (plain)
1
2
3
4
5
6
#![allow(dead_code)]

trait C {}
impl C { fn f() {} } //~ ERROR duplicate
impl C { fn f() {} }
fn main() { }