mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 10:45:18 +00:00
16 lines
201 B
Rust
16 lines
201 B
Rust
// run-pass
|
|
trait Bar<T> {}
|
|
impl<T> Bar<T> for [u8; 7] {}
|
|
|
|
struct Foo<const N: usize> {}
|
|
impl<const N: usize> Foo<N>
|
|
where
|
|
[u8; N]: Bar<[(); N]>,
|
|
{
|
|
fn foo() {}
|
|
}
|
|
|
|
fn main() {
|
|
Foo::foo();
|
|
}
|