rust/tests/crashes/131101.rs

13 lines
180 B
Rust
Raw Normal View History

2024-10-09 08:34:45 -05:00
//@ known-bug: #131101
trait Foo<const N: u8> {
fn do_x(&self) -> [u8; N];
}
struct Bar;
impl Foo<const 3> for Bar {
fn do_x(&self) -> [u8; 3] {
[0u8; 3]
}
}