Files
rust/tests/ui/nested-ty-params.rs

11 lines
288 B
Rust
Raw Normal View History

//@ error-pattern:can't use generic parameters from outer item
fn hd<U>(v: Vec<U> ) -> U {
2012-08-01 17:30:05 -07:00
fn hd1(w: [U]) -> U { return w[0]; }
//~^ ERROR can't use generic parameters from outer item
//~| ERROR can't use generic parameters from outer item
2012-08-01 17:30:05 -07:00
return hd1(v);
}
fn main() {}