summaryrefslogtreecommitdiffstats
path: root/src/test/ui/functions-closures/fn-help-with-err-generic-is-not-function.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/functions-closures/fn-help-with-err-generic-is-not-function.stderr')
-rw-r--r--src/test/ui/functions-closures/fn-help-with-err-generic-is-not-function.stderr17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/test/ui/functions-closures/fn-help-with-err-generic-is-not-function.stderr b/src/test/ui/functions-closures/fn-help-with-err-generic-is-not-function.stderr
new file mode 100644
index 000000000..26bdf460f
--- /dev/null
+++ b/src/test/ui/functions-closures/fn-help-with-err-generic-is-not-function.stderr
@@ -0,0 +1,17 @@
+error[E0412]: cannot find type `T` in this scope
+ --> $DIR/fn-help-with-err-generic-is-not-function.rs:2:13
+ |
+LL | impl Struct<T>
+ | - ^ not found in this scope
+ | |
+ | help: you might be missing a type parameter: `<T>`
+
+error[E0412]: cannot find type `T` in this scope
+ --> $DIR/fn-help-with-err-generic-is-not-function.rs:7:5
+ |
+LL | T: Copy,
+ | ^ not found in this scope
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0412`.