mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-08 19:16:19 +00:00
15 lines
170 B
Rust
15 lines
170 B
Rust
trait T {
|
|
<<<<<<< HEAD //~ ERROR encountered diff marker
|
|
fn foo() {}
|
|
=======
|
|
fn bar() {}
|
|
>>>>>>> branch
|
|
}
|
|
|
|
struct S;
|
|
impl T for S {}
|
|
|
|
fn main() {
|
|
S::foo();
|
|
}
|