mirror of
https://git.proxmox.com/git/rustc
synced 2025-10-14 14:21:29 +00:00
7 lines
117 B
Rust
7 lines
117 B
Rust
#![allow(dead_code)]
|
|
|
|
trait C {}
|
|
impl dyn C { fn f() {} } //~ ERROR duplicate
|
|
impl dyn C { fn f() {} }
|
|
fn main() { }
|