]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/associated-types/associated-types-ref-from-struct.rs
Update unsuspicious file list
[rustc.git] / src / test / ui / associated-types / associated-types-ref-from-struct.rs
index 3ccba289e4b0a55a49ca161599242c8c478442b4..c89f6046e6bf2cae138912276c9110d60ea44cd1 100644 (file)
@@ -9,8 +9,6 @@ trait Test {
     fn test(&self, value: &Self::V) -> bool;
 }
 
-///////////////////////////////////////////////////////////////////////////
-
 struct TesterPair<T:Test> {
     tester: T,
     value: T::V,
@@ -26,8 +24,6 @@ impl<T:Test> TesterPair<T> {
     }
 }
 
-///////////////////////////////////////////////////////////////////////////
-
 struct EqU32(u32);
 impl Test for EqU32 {
     type V = u32;