rustc/tests/ui/structs-enums/issue-3008-2.rs
2024-05-23 21:15:29 +02:00

7 lines
77 B
Rust

enum Foo { Foo_(Bar) }
struct Bar { x: Bar }
//~^ ERROR E0072
fn main() {
}