mirror of
https://github.com/rust-lang/rust.git
synced 2025-01-05 12:25:13 +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() {
|
||
|
}
|