rust/tests/ui/span/E0046.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
94 B
Rust
Raw Normal View History

2016-05-19 12:00:43 +00:00
trait Foo {
fn foo();
}
struct Bar;
impl Foo for Bar {}
//~^ ERROR E0046
2016-05-19 12:00:43 +00:00
fn main() {
}