Allow duplicate items in encoded urls
[hiphop-php.git] / hphp / test / slow / object / 652.php
blob34e658d23ea8a37f0931a3c21581b109714a51b3
1 <?php
3 interface I {
4 public function test($a);
6 class A {
7 public function test($a) {
8 print 'A';
11 class B extends A implements I {
12 public function test($a) {
13 print 'B';
16 $obj = new A();
17 $obj->test(1);
18 $obj = new B();
19 $obj->test(1);