Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / private_bad2.php
blob876416b43ed216008b0eb3139f2c48d07cbd1e69
1 <?hh // strict
3 class A {
4 private static function foo(): int {
5 return 4;
9 class B extends A {
10 public function bar(): int {
11 return parent::foo();