Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / instanceof_this_in_trait.php
blob61764b682e5b936d7e9748f3698d697f28247fd1
1 <?hh // strict
3 interface I {}
5 trait MyTrait {
6 public function __construct() {}
8 public function equals(I $other): this {
9 return $other instanceof $this;