rust/tests/crashes/131046.rs

16 lines
224 B
Rust
Raw Normal View History

2024-10-09 08:34:45 -05:00
//@ known-bug: #131046
trait Owner {
const C<const N: u32>: u32;
}
impl Owner for () {
const C<const N: u32>: u32 = N;
}
fn take0<const N: u64>(_: impl Owner<C<N> = { N }>) {}
fn main() {
take0::<128>(());
}