]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/single-use-lifetime/two-uses-in-inherent-impl-header.rs
New upstream version 1.49.0~beta.4+dfsg1
[rustc.git] / src / test / ui / single-use-lifetime / two-uses-in-inherent-impl-header.rs
index eb85a148e604098052399a849283116d4424597c..125a395db3be31076460a8e06ba401785545f7c7 100644 (file)
@@ -1,18 +1,17 @@
 // Test that we DO NOT warn for a lifetime used twice in an impl.
 //
-// build-pass (FIXME(62277): could be check-pass?)
+// check-pass
 
 #![deny(single_use_lifetimes)]
 #![allow(dead_code)]
 #![allow(unused_variables)]
 
 struct Foo<'f> {
-    data: &'f u32
+    data: &'f u32,
 }
 
 impl<'f> Foo<'f> {
-    fn inherent_a(&self, data: &'f u32) {
-    }
+    fn inherent_a(&self, data: &'f u32) {}
 }
 
-fn main() { }
+fn main() {}