]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/issues/issue-3214.stderr
New upstream version 1.34.2+dfsg1
[rustc.git] / src / test / ui / issues / issue-3214.stderr
index 4ecea4f98006e7ed8c528b31920181f6037ab82c..e6526bad3e0d3ac8bb44f3a0d836fa31fefa8e63 100644 (file)
@@ -1,13 +1,13 @@
-error[E0401]: can't use type parameters from outer function
+error[E0401]: can't use generic parameters from outer function
   --> $DIR/issue-3214.rs:3:12
    |
 LL | fn foo<T>() {
    |    --- - type variable from outer function
    |    |
-   |    try adding a local type parameter in this method instead
+   |    try adding a local generic parameter in this method instead
 LL |     struct Foo {
-LL |         x: T, //~ ERROR can't use type parameters from outer function
-   |            ^ use of type variable from outer function
+LL |         x: T, //~ ERROR can't use generic parameters from outer function
+   |            ^ use of generic parameter from outer function
 
 error[E0107]: wrong number of type arguments: expected 0, found 1
   --> $DIR/issue-3214.rs:6:26