Sign in
rust
/
rust-lang
/
rust
/
refs/heads/try
/
.
/
tests
/
ui
/
privacy
/
issue-11593.rs
blob: fc7174bb2011e3b61552bfb446e59bb108afaadf [
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
()
{}