DEBSOURCES
Skip Quicknav
sources / rustc / 1.70.0%2Bdfsg1-9 / tests / ui / consts / const-unit-struct.rs
123456789101112
// run-pass // pretty-expanded FIXME #23616 struct Foo; static X: Foo = Foo; pub fn main() { match X { Foo => {} } }