Several XHP autocomplete fixes
[hiphop-php.git] / hphp / hack / test / identify_symbol / fake_member.php
blobd5bcddd2c29984e7d66afa1c5e943185c360dea9
1 <?hh
3 class C {
4 private ?int $foo = null;
6 public function get(): void {
7 if ($this->foo) {
8 // TODO(t11082787): this property is not correctly identified, probably some bug
9 // related to FakeMembers
10 $this->foo;