Skip to content

Commit 2888d56

Browse files
committed
Update some new tests to changed error messages
1 parent 992712e commit 2888d56

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/test/ui/feature-gates/feature-gate-re-rebalance-coherence.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g. `MyStruct<T>`)
1+
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
22
--> $DIR/feature-gate-re-rebalance-coherence.rs:10:1
33
|
44
LL | impl<'a, T:'a, Tab> QueryFragment<Oracle> for BatchInsert<'a, T, Tab> {}

src/test/ui/re_rebalance_coherence/coherence-all-remote.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g. `MyStruct<T>`)
1+
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
22
--> $DIR/coherence-all-remote.rs:18:1
33
|
44
LL | impl<T> Remote1<T> for isize { }

src/test/ui/re_rebalance_coherence/coherence-bigint-param.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g. `MyStruct<T>`)
1+
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
22
--> $DIR/coherence-bigint-param.rs:20:1
33
|
44
LL | impl<T> Remote1<BigInt> for T { }

src/test/ui/re_rebalance_coherence/coherence-cross-crate-conflict.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LL | impl<A> Foo for A {
77
= note: conflicting implementation in crate `trait_impl_conflict`:
88
- impl trait_impl_conflict::Foo for isize;
99

10-
error[E0210]: type parameter `A` must be used as the type parameter for some local type (e.g. `MyStruct<A>`)
10+
error[E0210]: type parameter `A` must be used as the type parameter for some local type (e.g., `MyStruct<A>`)
1111
--> $DIR/coherence-cross-crate-conflict.rs:20:1
1212
|
1313
LL | impl<A> Foo for A {

src/test/ui/re_rebalance_coherence/coherence-lone-type-parameter.stderr

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g. `MyStruct<T>`)
1+
error[E0210]: type parameter `T` must be used as the type parameter for some local type (e.g., `MyStruct<T>`)
22
--> $DIR/coherence-lone-type-parameter.rs:18:1
33
|
44
LL | impl<T> Remote for T { }

0 commit comments

Comments
 (0)