mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 19:57:10 +00:00
11 lines
177 B
Rust
11 lines
177 B
Rust
//@ known-bug: rust-lang/rust#126182
|
|
|
|
#![feature(generic_const_exprs)]
|
|
#![allow(incomplete_features)]
|
|
|
|
struct Cond<const B: bool>;
|
|
|
|
struct Thing<T = Cond<0>>(T);
|
|
|
|
impl Thing {}
|