TestExtOptions, TestExtNetwork, TestExtSocket -> php
[hiphop-php.git] / hphp / test / slow / inner_class / 10.php
blobf31d98fa915b38868fdd63bfd60f87619d7566ee
1 <?php
3 function test() {
4 class test {
5 function p() {
6 print 'test';
10 test();
11 $obj = new Test();
12 $obj->p();