blob: e16a35158c35a0e01ea3f07e648171ce15c075af [file] [log] [blame]
trait MatrixShape {}
struct Col<D, C> {
data: D,
col: C,
}
trait Collection { fn len(&self) -> usize; }
impl<T, M: MatrixShape> Collection for Col<M, usize> {
//~^ ERROR type parameter `T` is not constrained
fn len(&self) -> usize {
unimplemented!()
}
}
fn main() {}