summary refs log tree commit diff
path: root/src/test/auxiliary/cci_class.rs
blob: cda361c1be970ae4fcef426a485fc58ef223cef2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mod kitties {

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; }
}

}