Add a test for #2063

This commit is contained in:
Seiichi Uchida 2017-10-17 00:12:22 +09:00
parent 2bf4747c47
commit 7cbdf35f63
2 changed files with 12 additions and 0 deletions

View file

@ -165,3 +165,9 @@ fn issue1713() {
|| recurse(right, is_less, Some(pivot), limit),
);
}
fn issue2063() {
|ctx: Ctx<(String, String)>| -> io::Result<Response> {
Ok(Response::new().with_body(ctx.params.0))
}
}

View file

@ -196,3 +196,9 @@ fn issue1713() {
|| recurse(right, is_less, Some(pivot), limit),
);
}
fn issue2063() {
|ctx: Ctx<(String, String)>| -> io::Result<Response> {
Ok(Response::new().with_body(ctx.params.0))
}
}