about summary refs log tree commit diff
path: root/tests/ui/impl-trait/call_method_ambiguous.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/impl-trait/call_method_ambiguous.rs')
-rw-r--r--tests/ui/impl-trait/call_method_ambiguous.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/impl-trait/call_method_ambiguous.rs b/tests/ui/impl-trait/call_method_ambiguous.rs
index 8fd6f727b73..6bcafc8ce14 100644
--- a/tests/ui/impl-trait/call_method_ambiguous.rs
+++ b/tests/ui/impl-trait/call_method_ambiguous.rs
@@ -24,7 +24,7 @@ where
 fn foo(n: usize, m: &mut ()) -> impl Get + use<'_> {
     if n > 0 {
         let mut iter = foo(n - 1, m);
-        //[next]~^ type annotations needed
+        //[next]~^ ERROR type annotations needed
         assert_eq!(iter.get(), 1);
     }
     m