2018-12-30 18:02:40 -06:00
|
|
|
warning: private trait `PrivNonPrincipal` in public interface (error E0445)
|
2020-01-09 04:56:38 -06:00
|
|
|
--> $DIR/private-in-public-non-principal.rs:7:1
|
2018-12-16 07:18:45 -06:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | pub fn leak_dyn_nonprincipal() -> Box<dyn PubPrincipal + PrivNonPrincipal> { loop {} }
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2018-12-16 07:18:45 -06:00
|
|
|
|
|
2019-07-16 15:17:38 -05:00
|
|
|
= note: `#[warn(private_in_public)]` on by default
|
2018-12-16 07:18:45 -06:00
|
|
|
= warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release!
|
|
|
|
= note: for more information, see issue #34537 <https://github.com/rust-lang/rust/issues/34537>
|
|
|
|
|
2020-03-21 19:47:23 -05:00
|
|
|
error: missing documentation for an associated function
|
2018-12-16 07:18:45 -06:00
|
|
|
--> $DIR/private-in-public-non-principal.rs:13:9
|
|
|
|
|
|
2019-03-09 06:03:44 -06:00
|
|
|
LL | pub fn check_doc_lint() {}
|
2018-12-16 07:18:45 -06:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
2020-01-22 17:57:38 -06:00
|
|
|
note: the lint level is defined here
|
2020-01-09 04:56:38 -06:00
|
|
|
--> $DIR/private-in-public-non-principal.rs:11:8
|
2018-12-16 07:18:45 -06:00
|
|
|
|
|
|
|
|
LL | #[deny(missing_docs)]
|
|
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|