about summary refs log tree commit diff
path: root/tests/ui/traits/next-solver/overflow/recursive-self-normalization.stderr
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2024-01-30 19:47:45 +0000
committerEsteban Küber <esteban@kuber.com.ar>2024-02-01 03:31:03 +0000
commit8b0ab54ffefd8855a9030f2c08463f041d0e9770 (patch)
tree8b48fa2d2f65ce7f3cf5462e876c4bc0c0fd787d /tests/ui/traits/next-solver/overflow/recursive-self-normalization.stderr
parent95d9009f49100a6cd111557bfc16e6bc997656cd (diff)
downloadrust-8b0ab54ffefd8855a9030f2c08463f041d0e9770.tar.gz
rust-8b0ab54ffefd8855a9030f2c08463f041d0e9770.zip
review comment: change wording
Diffstat (limited to 'tests/ui/traits/next-solver/overflow/recursive-self-normalization.stderr')
-rw-r--r--tests/ui/traits/next-solver/overflow/recursive-self-normalization.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/traits/next-solver/overflow/recursive-self-normalization.stderr b/tests/ui/traits/next-solver/overflow/recursive-self-normalization.stderr
index e4ef2f60740..7c058909df7 100644
--- a/tests/ui/traits/next-solver/overflow/recursive-self-normalization.stderr
+++ b/tests/ui/traits/next-solver/overflow/recursive-self-normalization.stderr
@@ -26,11 +26,11 @@ LL |     needs_bar::<T::Assoc>();
    |                 ^^^^^^^^
    |
    = help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`recursive_self_normalization`)
-note: required by a bound in `needs_bar`
+note: required by an implicit `Sized` bound in `needs_bar`
   --> $DIR/recursive-self-normalization.rs:8:14
    |
 LL | fn needs_bar<S: Bar>() {}
-   |              ^ required by this bound in `needs_bar`
+   |              ^ required by the implicit `Sized` requirement on this type parameter in `needs_bar`
 help: consider relaxing the implicit `Sized` restriction
    |
 LL | fn needs_bar<S: Bar + ?Sized>() {}