summaryrefslogtreecommitdiffstats
path: root/tests/ui/impl-trait/nested-return-type2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/impl-trait/nested-return-type2.rs')
-rw-r--r--tests/ui/impl-trait/nested-return-type2.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/ui/impl-trait/nested-return-type2.rs b/tests/ui/impl-trait/nested-return-type2.rs
index fe883ce6f..e1d551137 100644
--- a/tests/ui/impl-trait/nested-return-type2.rs
+++ b/tests/ui/impl-trait/nested-return-type2.rs
@@ -26,7 +26,6 @@ impl<R: Duh, F: FnMut() -> R> Trait for F {
// Lazy TAIT would error out, but we inserted a hack to make it work again,
// keeping backwards compatibility.
fn foo() -> impl Trait<Assoc = impl Send> {
- //~^ WARN opaque type `impl Trait<Assoc = impl Send>` does not satisfy its associated type bounds
|| 42
}