summaryrefslogtreecommitdiffstats
path: root/src/test/ui/span/E0046.rs
blob: 9611098926880cf9bbae8f56281e0219a52a5f5d (plain)
1
2
3
4
5
6
7
8
9
10
11
trait Foo {
    fn foo();
}

struct Bar;

impl Foo for Bar {}
//~^ ERROR E0046

fn main() {
}