summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type/type-arg-out-of-scope.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/test/ui/type/type-arg-out-of-scope.stderr23
1 files changed, 23 insertions, 0 deletions
diff --git a/src/test/ui/type/type-arg-out-of-scope.stderr b/src/test/ui/type/type-arg-out-of-scope.stderr
new file mode 100644
index 000000000..0b6283fbc
--- /dev/null
+++ b/src/test/ui/type/type-arg-out-of-scope.stderr
@@ -0,0 +1,23 @@
+error[E0401]: can't use generic parameters from outer function
+ --> $DIR/type-arg-out-of-scope.rs:3:29
+ |
+LL | fn foo<T>(x: T) {
+ | - type parameter from outer function
+LL | fn bar(f: Box<dyn FnMut(T) -> T>) { }
+ | --- ^ use of generic parameter from outer function
+ | |
+ | help: try using a local generic parameter instead: `bar<T>`
+
+error[E0401]: can't use generic parameters from outer function
+ --> $DIR/type-arg-out-of-scope.rs:3:35
+ |
+LL | fn foo<T>(x: T) {
+ | - type parameter from outer function
+LL | fn bar(f: Box<dyn FnMut(T) -> T>) { }
+ | --- ^ use of generic parameter from outer function
+ | |
+ | help: try using a local generic parameter instead: `bar<T>`
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0401`.