about summary refs log tree commit diff
path: root/tests/ui/suggestions/fn-trait-notation.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/suggestions/fn-trait-notation.rs')
-rw-r--r--tests/ui/suggestions/fn-trait-notation.rs4
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/ui/suggestions/fn-trait-notation.rs b/tests/ui/suggestions/fn-trait-notation.rs
index 91251614930..715bcf71d47 100644
--- a/tests/ui/suggestions/fn-trait-notation.rs
+++ b/tests/ui/suggestions/fn-trait-notation.rs
@@ -7,12 +7,14 @@ where
     H: Fn<(i32,), Output = i32>, //~ ERROR E0658
 {
     f(3);
+    //~^ ERROR: cannot use call notation
+    //~| ERROR: `i32` is not a tuple
     g(3, 4);
     h(3)
 }
 
 fn main() {
-    e0658(
+    e0658( //~ ERROR: mismatched types
         |a| a,
         |a, b| (b, a),
         |a| a,