about summary refs log tree commit diff
path: root/tests/ui/generic-const-items
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2023-08-14 13:09:53 +0000
committerEsteban Küber <esteban@kuber.com.ar>2023-10-04 02:04:14 +0000
commit91b9ffeab0f8c491c81cd976c0d23d947cd6d12f (patch)
tree6b205f2c64d77221af8600edb9343968e05a49a4 /tests/ui/generic-const-items
parent2817ece19c67a182c0b0aae402c0e57c8ed22dab (diff)
downloadrust-91b9ffeab0f8c491c81cd976c0d23d947cd6d12f.tar.gz
rust-91b9ffeab0f8c491c81cd976c0d23d947cd6d12f.zip
Reorder fullfillment errors to keep more interesting ones first
In `report_fullfillment_errors` push back `T: Sized`, `T: WellFormed`
and coercion errors to the end of the list. The pre-existing
deduplication logic eliminates redundant errors better that way, keeping
the resulting output with fewer errors than before, while also having
more detail.
Diffstat (limited to 'tests/ui/generic-const-items')
-rw-r--r--tests/ui/generic-const-items/inference-failure.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/generic-const-items/inference-failure.stderr b/tests/ui/generic-const-items/inference-failure.stderr
index 22ff1b9ba7f..10ecd83ec53 100644
--- a/tests/ui/generic-const-items/inference-failure.stderr
+++ b/tests/ui/generic-const-items/inference-failure.stderr
@@ -2,7 +2,7 @@ error[E0282]: type annotations needed for `Option<T>`
   --> $DIR/inference-failure.rs:8:9
    |
 LL |     let _ = NONE;
-   |         ^
+   |         ^   ---- type must be known at this point
    |
 help: consider giving this pattern a type, where the type for type parameter `T` is specified
    |