summary refs log tree commit diff
path: root/src/test/compile-fail/private-class-field.rs
blob: 15aba5d009d070c7becd0d4535cad0c4b51935a2 (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) { self.meows = in_x; self.how_hungry = in_y; }
}

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