File tree 1 file changed +10
-0
lines changed
1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -42,6 +42,10 @@ const LINKCHECK_EXCEPTIONS: &[(&str, &[&str])] = &[
42
42
"#method.get_unchecked_mut" ,
43
43
] ,
44
44
) ,
45
+ // FIXME(#74672): "Read more" is broken
46
+ ( "std/primitive.usize.html" , & [ "#tymethod.from_u64" ] ) ,
47
+ ( "std/primitive.u32.html" , & [ "#tymethod.from_u64" ] ) ,
48
+ ( "std/primitive.u64.html" , & [ "#tymethod.from_u64" ] ) ,
45
49
// These try to link to std::collections, but are defined in alloc
46
50
// https://github.com/rust-lang/rust/issues/74481
47
51
( "std/collections/btree_map/struct.BTreeMap.html" , & [ "#insert-and-complex-keys" ] ) ,
@@ -142,6 +146,12 @@ fn is_exception(file: &Path, link: &str) -> bool {
142
146
if let Some ( entry) = LINKCHECK_EXCEPTIONS . iter ( ) . find ( |& ( f, _) | file. ends_with ( f) ) {
143
147
entry. 1 . contains ( & link)
144
148
} else {
149
+ // FIXME(#63351): Concat trait in alloc/slice reexported in primitive page
150
+ if file. ends_with ( "std/primitive.slice.html" ) {
151
+ if link. ends_with ( "std/primitive.slice.html" ) {
152
+ return true ;
153
+ }
154
+ }
145
155
false
146
156
}
147
157
}
You can’t perform that action at this time.
0 commit comments