]> git.proxmox.com Git - rustc.git/blobdiff - src/test/compile-fail/issue-22886.rs
New upstream version 1.12.0+dfsg1
[rustc.git] / src / test / compile-fail / issue-22886.rs
index 4aa2571cad0cc9418709407687ff5ba9ac19056d..d258a4a8b3325b18149d8dd641a3c6d49534a46b 100644 (file)
@@ -21,6 +21,7 @@ fn crash_please() {
 struct Newtype(Option<Box<usize>>);
 
 impl<'a> Iterator for Newtype { //~ ERROR E0207
+                                //~| NOTE unconstrained lifetime parameter
     type Item = &'a Box<usize>;
 
     fn next(&mut self) -> Option<&Box<usize>> {