16 lines
320 B
Rust
16 lines
320 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 this struct takes at most 2 generic arguments but 3 generic arguments were supplied
|
|
}
|