summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/relate_tys/hr-fn-aaa-as-aba.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/relate_tys/hr-fn-aaa-as-aba.stderr')
-rw-r--r--src/test/ui/nll/relate_tys/hr-fn-aaa-as-aba.stderr21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/test/ui/nll/relate_tys/hr-fn-aaa-as-aba.stderr b/src/test/ui/nll/relate_tys/hr-fn-aaa-as-aba.stderr
deleted file mode 100644
index 7d76c916d..000000000
--- a/src/test/ui/nll/relate_tys/hr-fn-aaa-as-aba.stderr
+++ /dev/null
@@ -1,21 +0,0 @@
-error[E0308]: mismatched types
- --> $DIR/hr-fn-aaa-as-aba.rs:12:58
- |
-LL | let a: for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32 = make_it();
- | ^^^^^^^^^ one type is more general than the other
- |
- = note: expected fn pointer `for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32`
- found fn pointer `for<'a> fn(&'a u32, &'a u32) -> &'a u32`
-
-error[E0308]: mismatched types
- --> $DIR/hr-fn-aaa-as-aba.rs:20:12
- |
-LL | let _: for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32 = make_it();
- | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ one type is more general than the other
- |
- = note: expected fn pointer `for<'a, 'b> fn(&'a u32, &'b u32) -> &'a u32`
- found fn pointer `for<'a> fn(&'a u32, &'a u32) -> &'a u32`
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0308`.