summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/fn-trait-notation.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/suggestions/fn-trait-notation.fixed')
-rw-r--r--src/test/ui/suggestions/fn-trait-notation.fixed19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/test/ui/suggestions/fn-trait-notation.fixed b/src/test/ui/suggestions/fn-trait-notation.fixed
deleted file mode 100644
index cf940f4e9..000000000
--- a/src/test/ui/suggestions/fn-trait-notation.fixed
+++ /dev/null
@@ -1,19 +0,0 @@
-// run-rustfix
-fn e0658<F, G, H>(f: F, g: G, h: H) -> i32
-where
- F: Fn(i32) -> i32, //~ ERROR E0658
- G: Fn(i32, i32) -> (i32, i32), //~ ERROR E0658
- H: Fn(i32) -> i32, //~ ERROR E0658
-{
- f(3);
- g(3, 4);
- h(3)
-}
-
-fn main() {
- e0658(
- |a| a,
- |a, b| (b, a),
- |a| a,
- );
-}