Sign in
android
/
toolchain
/
rustc
/
2f3fdfeb95384b9046ea35b3532e23c652eca660
/
.
/
src
/
test
/
ui
/
nested-ty-params.rs
blob: 85413acdb149166ef51ca696fe39332fe54d70ae [
file
] [
log
] [
blame
]
// error-pattern:can't use generic parameters from outer function
fn
hd
<
U
>(
v
:
Vec
<
U
>
)
->
U
{
fn
hd1
(
w
:
[
U
])
->
U
{
return
w
[
0
];
}
return
hd1
(
v
);
}
fn
main
()
{}