From 29d56900c6d7d8465a8736db1640e570305820c5 Mon Sep 17 00:00:00 2001 From: Sergio Benitez Date: Sun, 4 Mar 2018 13:35:37 -0800 Subject: [PATCH] Remove unused bounds in type alias. --- codegen/tests/type-alias-lints.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/codegen/tests/type-alias-lints.rs b/codegen/tests/type-alias-lints.rs index d36824f3..4d5c5575 100644 --- a/codegen/tests/type-alias-lints.rs +++ b/codegen/tests/type-alias-lints.rs @@ -8,7 +8,7 @@ use rocket::State; type MyState<'r> = State<'r, usize>; -type MyVecState<'r, T: 'r> = State<'r, Vec>; +type MyVecState<'r, T> = State<'r, Vec>; #[get("/")] fn index(state: MyState) { }