summary refs log tree commit diff
path: root/src/test/ui/issue-3214.stderr
blob: 1298e4a007d41d136280630ac2070ca18e830cc1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
error[E0401]: can't use type parameters from outer function
  --> $DIR/issue-3214.rs:13:12
   |
LL | fn foo<T>() {
   |    --- - type variable from outer function
   |    |
   |    try adding a local type 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

error[E0244]: wrong number of type arguments: expected 0, found 1
  --> $DIR/issue-3214.rs:16:22
   |
LL |     impl<T> Drop for foo<T> {
   |                      ^^^^^^ expected no type arguments

error: aborting due to 2 previous errors

Some errors occurred: E0244, E0401.
For more information about an error, try `rustc --explain E0244`.