No error on use of `unsafe_cast`
[hiphop-php.git] / hphp / hack / test / typecheck / dynamic_props1.php
blobffa79f241327e7f9ee4b4a306b2b301382679a45
1 <?hh // partial
3 class A {
4 const c = 1;
5 static $f1 = "42";
8 function f() {
9 $a = A::c; // no errors
10 $b = A::$f1; // no errors