10 lines
336 B
Plaintext
10 lines
336 B
Plaintext
|
error[E0261]: use of undeclared lifetime name `'a`
|
||
|
--> $DIR/method-call-lifetime-args-unresolved.rs:12:15
|
||
|
|
|
||
|
LL | 0.clone::<'a>(); //~ ERROR use of undeclared lifetime name `'a`
|
||
|
| ^^ undeclared lifetime
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0261`.
|