rust/tests/ui/error-codes/E0405.rs

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

7 lines
70 B
Rust
Raw Normal View History

2016-08-15 11:58:28 +00:00
struct Foo;
impl SomeTrait for Foo {} //~ ERROR E0405
fn main() {
}