mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
15 lines
167 B
Rust
15 lines
167 B
Rust
struct Bar;
|
|
|
|
trait Foo {
|
|
fn foo();
|
|
}
|
|
|
|
pub impl Bar {} //~ ERROR E0449
|
|
|
|
pub impl Foo for Bar { //~ ERROR E0449
|
|
pub fn foo() {} //~ ERROR E0449
|
|
}
|
|
|
|
fn main() {
|
|
}
|