mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 13:52:33 +00:00
13 lines
159 B
Rust
13 lines
159 B
Rust
struct S {
|
|
x: u8,
|
|
}
|
|
fn main() {
|
|
let _ = S {
|
|
<<<<<<< HEAD //~ ERROR encountered diff marker
|
|
x: 42,
|
|
=======
|
|
x: 0,
|
|
>>>>>>> branch
|
|
}
|
|
}
|