mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 12:39:53 +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);
|
|
}
|