summaryrefslogtreecommitdiff
path: root/src/test/ui/rfc1598-generic-associated-types/parameter_number_and_kind.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/rfc1598-generic-associated-types/parameter_number_and_kind.stderr')
-rw-r--r--src/test/ui/rfc1598-generic-associated-types/parameter_number_and_kind.stderr20
1 files changed, 10 insertions, 10 deletions
diff --git a/src/test/ui/rfc1598-generic-associated-types/parameter_number_and_kind.stderr b/src/test/ui/rfc1598-generic-associated-types/parameter_number_and_kind.stderr
index dfd1648e5c0..265b0fab770 100644
--- a/src/test/ui/rfc1598-generic-associated-types/parameter_number_and_kind.stderr
+++ b/src/test/ui/rfc1598-generic-associated-types/parameter_number_and_kind.stderr
@@ -4,35 +4,35 @@ warning: the feature `generic_associated_types` is incomplete and may cause the
LL | #![feature(generic_associated_types)]
| ^^^^^^^^^^^^^^^^^^^^^^^^
-error[E0110]: lifetime parameters are not allowed on this type
+error[E0110]: lifetime arguments are not allowed on this entity
--> $DIR/parameter_number_and_kind.rs:17:27
|
LL | type FOk<T> = Self::E<'static, T>;
- | ^^^^^^^ lifetime parameter not allowed
+ | ^^^^^^^ lifetime argument not allowed
-error[E0109]: type parameters are not allowed on this type
+error[E0109]: type arguments are not allowed on this entity
--> $DIR/parameter_number_and_kind.rs:17:36
|
LL | type FOk<T> = Self::E<'static, T>;
- | ^ type parameter not allowed
+ | ^ type argument not allowed
-error[E0110]: lifetime parameters are not allowed on this type
+error[E0110]: lifetime arguments are not allowed on this entity
--> $DIR/parameter_number_and_kind.rs:20:26
|
LL | type FErr1 = Self::E<'static, 'static>; // Error
- | ^^^^^^^ lifetime parameter not allowed
+ | ^^^^^^^ lifetime argument not allowed
-error[E0110]: lifetime parameters are not allowed on this type
+error[E0110]: lifetime arguments are not allowed on this entity
--> $DIR/parameter_number_and_kind.rs:22:29
|
LL | type FErr2<T> = Self::E<'static, T, u32>; // Error
- | ^^^^^^^ lifetime parameter not allowed
+ | ^^^^^^^ lifetime argument not allowed
-error[E0109]: type parameters are not allowed on this type
+error[E0109]: type arguments are not allowed on this entity
--> $DIR/parameter_number_and_kind.rs:22:38
|
LL | type FErr2<T> = Self::E<'static, T, u32>; // Error
- | ^ type parameter not allowed
+ | ^ type argument not allowed
error: aborting due to 5 previous errors