rust/tests/ui/issues/issue-18389.rs
2023-06-12 01:02:19 +03:00

25 lines
549 B
Rust

#![warn(private_bounds)]
// In this test both old and new private-in-public diagnostic were emitted.
// Old diagnostic will be deleted soon.
// See https://rust-lang.github.io/rfcs/2145-type-privacy.html.
use std::any::Any;
use std::any::TypeId;
trait Private<P, R> {
fn call(&self, p: P, r: R);
}
pub trait Public: Private<
//~^ ERROR private trait `Private<<Self as Public>::P, <Self as Public>::R>` in public interface
<Self as Public>::P,
<Self as Public>::R
> {
type P;
type R;
fn call_inner(&self);
}
fn main() {}