mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
21 lines
323 B
Rust
21 lines
323 B
Rust
|
struct Foo<T, const N: usize> {
|
||
|
array: [T; N],
|
||
|
}
|
||
|
|
||
|
trait Bar<const N: usize> {}
|
||
|
|
||
|
impl<T, const N: usize> Foo<T, N> {
|
||
|
fn trigger(self) {
|
||
|
self.unsatisfied()
|
||
|
//~^ ERROR the trait bound `T: Bar<N>` is not satisfied
|
||
|
}
|
||
|
|
||
|
fn unsatisfied(self)
|
||
|
where
|
||
|
T: Bar<N>,
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {}
|