blob: 102f8d02ee416fd1f238521ef27d37c41468f6c5 [file] [log] [blame]
// 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() {}