blob: b776f2017fae0d92e27c25acd2cb4fdba7251896 [file] [log] [blame]
use std::marker::PhantomData;
struct B<T, const N: T>(PhantomData<[T; N]>);
//~^ ERROR the type of const parameters must not depend on other generic parameters
fn main() {}