No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / infinity.php
bloba72b00003657b0a21e5fcdeab4fa42208344e7f1
1 <?hh // strict
3 class A {
4 public int $infinity = 0;
5 public function cmp(A $other): int {
6 return $this->infinity - $other->infinity;