mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
13 lines
314 B
Rust
13 lines
314 B
Rust
trait Foo {
|
|
fn dummy(&self) { }
|
|
}
|
|
|
|
pub trait Bar : Foo {}
|
|
//~^ ERROR private trait `Foo` in public interface [E0445]
|
|
pub struct Bar2<T: Foo>(pub T);
|
|
//~^ ERROR private trait `Foo` in public interface [E0445]
|
|
pub fn foo<T: Foo> (t: T) {}
|
|
//~^ ERROR private trait `Foo` in public interface [E0445]
|
|
|
|
fn main() {}
|