mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-16 05:56:56 +00:00
11 lines
128 B
Rust
11 lines
128 B
Rust
//@ known-bug: #130395
|
|
//@ needs-rustc-debug-assertions
|
|
|
|
enum U {
|
|
B(isize, usize),
|
|
}
|
|
|
|
fn main() {
|
|
let x = T::A(U::C);
|
|
}
|