Use iterator adapters in decl_class_parents
[hiphop-php.git] / hphp / test / slow / reffy-warn.php
blob24bffcf7eac7a8b9307783fe00e721fee73ed01f
1 <?hh
3 class Foo {
4 function alpha($one, inout $two, $three, inout $four) {}
7 class Bar extends Foo {
8 function alpha(inout $one, $two, $three, inout $four) {}
11 <<__EntryPoint>>
12 function main(): void {
13 echo "Done.\n";