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