rust/tests/crashes/146261.rs
2025-10-23 22:15:34 +00:00

13 lines
299 B
Rust

// This is part of series of regression tests for some diagnostics ICEs encountered in the wild with
// suggestions having overlapping parts under https://github.com/rust-lang/rust/pull/146121.
//@ needs-rustc-debug-assertions
//@ known-bug: #146261
enum U {
B(),
}
fn main() {
A(U::C)
}