summaryrefslogtreecommitdiffstats
path: root/src/test/ui/resolve/issue-3021-c.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/resolve/issue-3021-c.stderr')
-rw-r--r--src/test/ui/resolve/issue-3021-c.stderr25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/test/ui/resolve/issue-3021-c.stderr b/src/test/ui/resolve/issue-3021-c.stderr
new file mode 100644
index 000000000..8764ac8a8
--- /dev/null
+++ b/src/test/ui/resolve/issue-3021-c.stderr
@@ -0,0 +1,25 @@
+error[E0401]: can't use generic parameters from outer function
+ --> $DIR/issue-3021-c.rs:4:24
+ |
+LL | fn siphash<T>() {
+ | - type parameter from outer function
+...
+LL | fn g(&self, x: T) -> T;
+ | - ^ use of generic parameter from outer function
+ | |
+ | help: try using a local generic parameter instead: `g<T>`
+
+error[E0401]: can't use generic parameters from outer function
+ --> $DIR/issue-3021-c.rs:4:30
+ |
+LL | fn siphash<T>() {
+ | - type parameter from outer function
+...
+LL | fn g(&self, x: T) -> T;
+ | - ^ use of generic parameter from outer function
+ | |
+ | help: try using a local generic parameter instead: `g<T>`
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0401`.