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