rust/tests/ui/generics/generic-impl-more-params-wi...

16 lines
315 B
Rust

use std::marker;
struct Heap;
struct Vec<T, A = Heap>(
marker::PhantomData<(T,A)>);
impl<T, A> Vec<T, A> {
fn new() -> Vec<T, A> {Vec(marker::PhantomData)}
}
fn main() {
Vec::<isize, Heap, bool>::new();
//~^ ERROR struct takes at most 2 generic arguments but 3 generic arguments were supplied
}