@@ -982,44 +982,6 @@ declare_lint! {
982
982
"detects trivial casts of numeric types which could be removed"
983
983
}
984
984
985
- declare_lint ! {
986
- /// The `private_in_public` lint detects private items in public
987
- /// interfaces not caught by the old implementation.
988
- ///
989
- /// ### Example
990
- ///
991
- /// ```rust
992
- /// # #![allow(unused)]
993
- /// struct SemiPriv;
994
- ///
995
- /// mod m1 {
996
- /// struct Priv;
997
- /// impl super::SemiPriv {
998
- /// pub fn f(_: Priv) {}
999
- /// }
1000
- /// }
1001
- /// # fn main() {}
1002
- /// ```
1003
- ///
1004
- /// {{produces}}
1005
- ///
1006
- /// ### Explanation
1007
- ///
1008
- /// The visibility rules are intended to prevent exposing private items in
1009
- /// public interfaces. This is a [future-incompatible] lint to transition
1010
- /// this to a hard error in the future. See [issue #34537] for more
1011
- /// details.
1012
- ///
1013
- /// [issue #34537]: https://github.com/rust-lang/rust/issues/34537
1014
- /// [future-incompatible]: ../index.md#future-incompatible-lints
1015
- pub PRIVATE_IN_PUBLIC ,
1016
- Warn ,
1017
- "detect private items in public interfaces not caught by the old implementation" ,
1018
- @future_incompatible = FutureIncompatibleInfo {
1019
- reference: "issue #34537 <https://github.com/rust-lang/rust/issues/34537>" ,
1020
- } ;
1021
- }
1022
-
1023
985
declare_lint ! {
1024
986
/// The `invalid_alignment` lint detects dereferences of misaligned pointers during
1025
987
/// constant evaluation.
@@ -3374,7 +3336,6 @@ declare_lint_pass! {
3374
3336
PATTERNS_IN_FNS_WITHOUT_BODY ,
3375
3337
POINTER_STRUCTURAL_MATCH ,
3376
3338
PRIVATE_BOUNDS ,
3377
- PRIVATE_IN_PUBLIC ,
3378
3339
PRIVATE_INTERFACES ,
3379
3340
PROC_MACRO_BACK_COMPAT ,
3380
3341
PROC_MACRO_DERIVE_RESOLUTION_FALLBACK ,
@@ -4293,9 +4254,7 @@ declare_lint! {
4293
4254
/// ### Example
4294
4255
///
4295
4256
/// ```rust,compile_fail
4296
- /// # #![feature(type_privacy_lints)]
4297
4257
/// # #![allow(unused)]
4298
- /// # #![allow(private_in_public)]
4299
4258
/// #![deny(private_interfaces)]
4300
4259
/// struct SemiPriv;
4301
4260
///
@@ -4316,9 +4275,8 @@ declare_lint! {
4316
4275
/// Having something private in primary interface guarantees that
4317
4276
/// the item will be unusable from outer modules due to type privacy.
4318
4277
pub PRIVATE_INTERFACES ,
4319
- Allow ,
4278
+ Warn ,
4320
4279
"private type in primary interface of an item" ,
4321
- @feature_gate = sym:: type_privacy_lints;
4322
4280
}
4323
4281
4324
4282
declare_lint ! {
@@ -4329,8 +4287,6 @@ declare_lint! {
4329
4287
/// ### Example
4330
4288
///
4331
4289
/// ```rust,compile_fail
4332
- /// # #![feature(type_privacy_lints)]
4333
- /// # #![allow(private_in_public)]
4334
4290
/// # #![allow(unused)]
4335
4291
/// #![deny(private_bounds)]
4336
4292
///
@@ -4348,9 +4304,8 @@ declare_lint! {
4348
4304
/// Having private types or traits in item bounds makes it less clear what interface
4349
4305
/// the item actually provides.
4350
4306
pub PRIVATE_BOUNDS ,
4351
- Allow ,
4307
+ Warn ,
4352
4308
"private type in secondary interface of an item" ,
4353
- @feature_gate = sym:: type_privacy_lints;
4354
4309
}
4355
4310
4356
4311
declare_lint ! {
0 commit comments