blob: 8bf034e8203c97668903ff4315115824735f2e85 [file] [log] [blame]
// aux-build:private-trait-xc.rs
extern crate private_trait_xc;
struct Bar;
impl private_trait_xc::Foo for Bar {}
//~^ ERROR: trait `Foo` is private
fn main() {}