rust/tests/ui/enum/enum-variant-no-field.rs
reddevilmidzy 1bd997a452 Cleaned up some tests
Split invalid-compile-flags into run-pass & invalid

Update tests/ui/README.md
2025-12-16 02:10:08 +09:00

9 lines
166 B
Rust

//! regression test for https://github.com/rust-lang/rust/issues/23253
enum Foo {
Bar,
}
fn main() {
Foo::Bar.a;
//~^ ERROR no field `a` on type `Foo`
}