Sign in
rust
/
rust-lang
/
rust
/
refs/heads/stable
/
.
/
tests
/
ui
/
privacy
/
private-method-cross-crate.rs
blob: 7a11ab5ad55e1a7e49761907990a575b1ea8b82f [
file
] [
log
] [
blame
]
//@ aux-build:cci_class_5.rs
extern
crate cci_class_5
;
use
cci_class_5
::
kitties
::
cat
;
fn
main
()
{
let
nyan
:
cat
=
cat
(
52
,
99
);
nyan
.
nap
();
//~ ERROR method `nap` is private
}