rust/src/test/ui/nested-ty-params.rs
2018-12-25 21:08:33 -07:00

9 lines
168 B
Rust

// error-pattern:can't use type parameters from outer function
fn hd<U>(v: Vec<U> ) -> U {
fn hd1(w: [U]) -> U { return w[0]; }
return hd1(v);
}
fn main() {}