Allow defaults to call policied
[hiphop-php.git] / hphp / test / slow / rx / body / class-statics-base.php
blobc4851097f2cd92516dab18c296dda872695e2108
1 <?hh
3 class C { public static $p; }
5 function test()[rx] {
6 C::$p['a'] = 'b';
9 <<__EntryPoint>>
10 function main() {
11 C::$p = dict[];
12 test();