No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / xhp_attr_2.php
blobf5e27aa78563e7e76fa4b249276070f4df23c00c
1 <?hh // strict
2 class :foo extends XHPTest {
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;