mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 01:08:18 +00:00
12 lines
94 B
Rust
12 lines
94 B
Rust
trait Foo {
|
|
fn foo();
|
|
}
|
|
|
|
struct Bar;
|
|
|
|
impl Foo for Bar {}
|
|
//~^ ERROR E0046
|
|
|
|
fn main() {
|
|
}
|