summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/exhaustive-value.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/exhaustive-value.stderr')
-rw-r--r--tests/ui/const-generics/exhaustive-value.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/const-generics/exhaustive-value.stderr b/tests/ui/const-generics/exhaustive-value.stderr
index 4a26e0977..deb65ddba 100644
--- a/tests/ui/const-generics/exhaustive-value.stderr
+++ b/tests/ui/const-generics/exhaustive-value.stderr
@@ -1,8 +1,8 @@
error[E0277]: the trait bound `(): Foo<N>` is not satisfied
- --> $DIR/exhaustive-value.rs:262:5
+ --> $DIR/exhaustive-value.rs:262:6
|
LL | <() as Foo<N>>::test()
- | ^^^^^^^^^^^^^^^^^^^^ the trait `Foo<N>` is not implemented for `()`
+ | ^^ the trait `Foo<N>` is not implemented for `()`
|
= help: the following other types implement trait `Foo<N>`:
<() as Foo<0>>