@@ -72,7 +72,9 @@ impl<'tcx> fmt::Display for LazyDefPathStr<'tcx> {
72
72
pub trait DefIdVisitor < ' tcx > {
73
73
type Result : VisitorResult = ( ) ;
74
74
const SHALLOW : bool = false ;
75
- const SKIP_ASSOC_TYS : bool = false ;
75
+ fn skip_assoc_tys ( & self ) -> bool {
76
+ false
77
+ }
76
78
77
79
fn tcx ( & self ) -> TyCtxt < ' tcx > ;
78
80
fn visit_def_id ( & mut self , def_id : DefId , kind : & str , descr : & dyn fmt:: Display )
@@ -213,7 +215,7 @@ where
213
215
}
214
216
}
215
217
ty:: Alias ( kind @ ( ty:: Inherent | ty:: Weak | ty:: Projection ) , data) => {
216
- if V :: SKIP_ASSOC_TYS {
218
+ if self . def_id_visitor . skip_assoc_tys ( ) {
217
219
// Visitors searching for minimal visibility/reachability want to
218
220
// conservatively approximate associated types like `Type::Alias`
219
221
// as visible/reachable even if `Type` is private.
@@ -324,7 +326,9 @@ impl<'a, 'tcx, VL: VisibilityLike, const SHALLOW: bool> DefIdVisitor<'tcx>
324
326
for FindMin < ' a , ' tcx , VL , SHALLOW >
325
327
{
326
328
const SHALLOW : bool = SHALLOW ;
327
- const SKIP_ASSOC_TYS : bool = true ;
329
+ fn skip_assoc_tys ( & self ) -> bool {
330
+ true
331
+ }
328
332
fn tcx ( & self ) -> TyCtxt < ' tcx > {
329
333
self . tcx
330
334
}
@@ -342,7 +346,7 @@ trait VisibilityLike: Sized {
342
346
def_id : LocalDefId ,
343
347
) -> Self ;
344
348
345
- // Returns an over-approximation (`SKIP_ASSOC_TYS ` = true) of visibility due to
349
+ // Returns an over-approximation (`skip_assoc_tys() ` = true) of visibility due to
346
350
// associated types for which we can't determine visibility precisely.
347
351
fn of_impl < const SHALLOW : bool > (
348
352
def_id : LocalDefId ,
@@ -1352,6 +1356,7 @@ struct SearchInterfaceForPrivateItemsVisitor<'tcx> {
1352
1356
required_effective_vis : Option < EffectiveVisibility > ,
1353
1357
in_assoc_ty : bool ,
1354
1358
in_primary_interface : bool ,
1359
+ skip_assoc_tys : bool ,
1355
1360
}
1356
1361
1357
1362
impl SearchInterfaceForPrivateItemsVisitor < ' _ > {
@@ -1398,6 +1403,14 @@ impl SearchInterfaceForPrivateItemsVisitor<'_> {
1398
1403
self
1399
1404
}
1400
1405
1406
+ fn trait_ref ( & mut self ) -> & mut Self {
1407
+ self . in_primary_interface = true ;
1408
+ if let Some ( trait_ref) = self . tcx . impl_trait_ref ( self . item_def_id ) {
1409
+ let _ = self . visit_trait ( trait_ref. instantiate_identity ( ) ) ;
1410
+ }
1411
+ self
1412
+ }
1413
+
1401
1414
fn check_def_id ( & mut self , def_id : DefId , kind : & str , descr : & dyn fmt:: Display ) -> bool {
1402
1415
if self . leaks_private_dep ( def_id) {
1403
1416
self . tcx . emit_node_span_lint (
@@ -1495,6 +1508,9 @@ impl SearchInterfaceForPrivateItemsVisitor<'_> {
1495
1508
1496
1509
impl < ' tcx > DefIdVisitor < ' tcx > for SearchInterfaceForPrivateItemsVisitor < ' tcx > {
1497
1510
type Result = ControlFlow < ( ) > ;
1511
+ fn skip_assoc_tys ( & self ) -> bool {
1512
+ self . skip_assoc_tys
1513
+ }
1498
1514
fn tcx ( & self ) -> TyCtxt < ' tcx > {
1499
1515
self . tcx
1500
1516
}
@@ -1531,6 +1547,7 @@ impl<'tcx> PrivateItemsInPublicInterfacesChecker<'_, 'tcx> {
1531
1547
required_effective_vis,
1532
1548
in_assoc_ty : false ,
1533
1549
in_primary_interface : true ,
1550
+ skip_assoc_tys : false ,
1534
1551
}
1535
1552
}
1536
1553
@@ -1726,13 +1743,18 @@ impl<'tcx> PrivateItemsInPublicInterfacesChecker<'_, 'tcx> {
1726
1743
self . effective_visibilities ,
1727
1744
) ;
1728
1745
1729
- // check that private components do not appear in the generics or predicates of inherent impls
1730
- // this check is intentionally NOT performed for impls of traits, per #90586
1746
+ let mut check = self . check ( item. owner_id . def_id , impl_vis, Some ( impl_ev) ) ;
1747
+ // Generics and predicates of trait impls are intentionally not checked
1748
+ // for private components (#90586).
1731
1749
if impl_. of_trait . is_none ( ) {
1732
- self . check ( item. owner_id . def_id , impl_vis, Some ( impl_ev) )
1733
- . generics ( )
1734
- . predicates ( ) ;
1750
+ check. generics ( ) . predicates ( ) ;
1735
1751
}
1752
+ // Skip checking private components in associated types, due to lack of full
1753
+ // normalization they produce very ridiculous false positives.
1754
+ // FIXME: Remove this when full normalization is implemented.
1755
+ check. skip_assoc_tys = true ;
1756
+ check. ty ( ) . trait_ref ( ) ;
1757
+
1736
1758
for impl_item_ref in impl_. items {
1737
1759
let impl_item_vis = if impl_. of_trait . is_none ( ) {
1738
1760
min (
0 commit comments