DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / issues / issue-17405.rs
123456789
enum Foo { Bar(isize) } fn main() { match Foo::Bar(1) { Foo { i } => () //~ ERROR expected struct, variant or union type, found enum `Foo` } }