2018-11-05 04:00:03 +00:00
|
|
|
//@ aux-build:private-trait-xc.rs
|
2014-01-17 15:23:19 -08:00
|
|
|
|
2014-02-14 10:10:06 -08:00
|
|
|
extern crate private_trait_xc;
|
2014-01-17 15:23:19 -08:00
|
|
|
|
|
|
|
|
struct Bar;
|
|
|
|
|
|
|
|
|
|
impl private_trait_xc::Foo for Bar {}
|
|
|
|
|
//~^ ERROR: trait `Foo` is private
|
|
|
|
|
|
|
|
|
|
fn main() {}
|