From 7d8519d4160c548d28f4ff58165b09b81da6acf6 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Sun, 8 Dec 2024 18:53:50 -0800 Subject: [PATCH] Update ui test suite to nightly-2024-12-09 --- tests/ui/consider-restricting.stderr | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/ui/consider-restricting.stderr b/tests/ui/consider-restricting.stderr index 66e9637..519b820 100644 --- a/tests/ui/consider-restricting.stderr +++ b/tests/ui/consider-restricting.stderr @@ -10,7 +10,7 @@ note: captured value is not `Send` 16 | async fn publish(&self, url: T) {} | ^^^ has type `T` which is not `Send` = note: required for the cast from `Pin>` to `Pin + Send + 'async_trait)>>` -help: consider further restricting this bound +help: consider further restricting type parameter `T` with trait `Send` | 16 | async fn publish(&self, url: T) {} | +++++++++++++++++++ @@ -27,7 +27,7 @@ note: captured value is not `Send` 23 | async fn publish(&self, url: T) {} | ^^^ has type `T` which is not `Send` = note: required for the cast from `Pin>` to `Pin + Send + 'async_trait)>>` -help: consider further restricting this bound +help: consider further restricting type parameter `T` with trait `Send` | 23 | async fn publish(&self, url: T) {} | +++++++++++++++++++