DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / match / issue-113012.rs
123456789101112
//@ run-pass #![allow(dead_code)] struct Foo(()); const FOO: Foo = Foo(match 0 { 0.. => (), _ => (), }); fn main() { }