summary refs log tree commit diff
path: root/src/test/compile-fail/private-class-field.rs
blob: c0fb997d14c0bb89afbfbe7990ca74d75ba8d45d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// error-pattern:no public field or method with that name
class cat {
  priv {
    let mut meows : uint;
  }

  let how_hungry : int;

  new(in_x : uint, in_y : int) { meows = in_x; how_hungry = in_y; }
}

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