mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 23:34:48 +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
|
|
}
|
|
}
|