summary refs log tree commit diff
path: root/src/test/compile-fail/private-method-cross-crate.rs
blob: f54a0ffc068d52bfc922f71f99ff93f214ec77fa (plain)
1
2
3
4
5
6
7
8
9
10
// error-pattern:attempted access of field `nap` on type
// xfail-fast
// aux-build:cci_class_5.rs
use cci_class_5;
import cci_class_5::kitties::*;

fn main() {
  let nyan : cat = cat(52u, 99);
  nyan.nap();
}