global statement removal: hphp/test [7/x]
[hiphop-php.git] / hphp / test / quick / countable.php
blob988d3390c3d9b4850289a335494f593ca2cf3c60
1 <?hh
3 class klass implements Countable {
4 public function count() { return 123; }
7 function main() {
8 $k = new klass;
9 var_dump(count($k));
11 main();