rust/tests/ui/parser/diff-markers/enum-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
150 B
Rust
Raw Normal View History

enum E {
Foo {
<<<<<<< HEAD //~ ERROR encountered diff marker
x: u8,
2022-12-28 22:55:46 -06:00
|||||||
z: (),
=======
2022-12-28 22:55:46 -06:00
y: i8,
>>>>>>> branch
}
}