Add is_declaration to SymbolOccurrence
[hiphop-php.git] / hphp / hack / test / identify_symbol / classname.php
blob721c3f97829a1bb0cc294960b86f65ff765e243a
1 <?hh // strict
3 class C {
4 public static function foo(): void {}
7 function test(): void {
8 $cls = C::class;
9 $cls::foo();