Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / deprecated_method.php
blob4332029620fd847feb59d85aeb825a73b3a7d412
1 <?hh
3 class F {
4 <<__Deprecated('use bar() instead')>>
5 public static function foo() {}
8 function f() {
9 F::foo();