From a66a0110de5258507c30e26d7e7d055ffc080cfc Mon Sep 17 00:00:00 2001 From: Tomas Gavenciak Date: Wed, 28 Mar 2018 09:15:36 +0200 Subject: [PATCH] Fix test stderr after tidying the source --- .../collections.stderr | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/test/ui/rfc1598-generic-associated-types/collections.stderr b/src/test/ui/rfc1598-generic-associated-types/collections.stderr index 6aa7aa993fd2..eda8fb5f93fb 100644 --- a/src/test/ui/rfc1598-generic-associated-types/collections.stderr +++ b/src/test/ui/rfc1598-generic-associated-types/collections.stderr @@ -1,29 +1,29 @@ error[E0109]: type parameters are not allowed on this type - --> $DIR/collections.rs:57:90 + --> $DIR/collections.rs:59:90 | LL | fn floatify(ints: &C) -> <>::Family as CollectionFamily>::Member | ^^^ type parameter not allowed error[E0109]: type parameters are not allowed on this type - --> $DIR/collections.rs:67:69 + --> $DIR/collections.rs:69:69 | LL | fn floatify_sibling(ints: &C) -> >::Sibling | ^^^ type parameter not allowed error[E0110]: lifetime parameters are not allowed on this type - --> $DIR/collections.rs:23:50 + --> $DIR/collections.rs:24:50 | LL | fn iterate<'iter>(&'iter self) -> Self::Iter<'iter>; | ^^^^^ lifetime parameter not allowed on this type error[E0109]: type parameters are not allowed on this type - --> $DIR/collections.rs:28:100 + --> $DIR/collections.rs:30:16 | -LL | type Sibling: Collection = <>::Family as CollectionFamily>::Member; - | ^ type parameter not allowed +LL | Member; + | ^ type parameter not allowed error[E0110]: lifetime parameters are not allowed on this type - --> $DIR/collections.rs:49:50 + --> $DIR/collections.rs:51:50 | LL | fn iterate<'iter>(&'iter self) -> Self::Iter<'iter> { | ^^^^^ lifetime parameter not allowed on this type