]> git.proxmox.com Git - rustc.git/blame - src/test/ui/methods/method-call-lifetime-args-unresolved.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / src / test / ui / methods / method-call-lifetime-args-unresolved.rs
CommitLineData
3b2f2976 1fn main() {
04454e1e
FG
2 0.clone::<'a>();
3 //~^ ERROR use of undeclared lifetime name `'a`
4 //~| WARN cannot specify lifetime arguments explicitly if late bound
5 //~| WARN this was previously accepted by the compiler
223e47cc 6}