mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
13 lines
180 B
Rust
13 lines
180 B
Rust
//@ 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]
|
|
}
|
|
}
|