Check for void/noreturn in conditionals
[hiphop-php.git] / hphp / hack / test / typecheck / xhp_attr_2.php
blobbfd904b3a120debd8746c818b8634d59300fd0d6
1 <?hh // strict
2 class :foo {
3 attribute int x = 0;
4 public string $x = "";
6 function test1(:foo $obj): int {
7 return $obj->:x;
9 function test2(:foo $obj): string {
10 return $obj->x;