Add binary field to deepcopy test
[hiphop-php.git] / hphp / hack / test / find_refs / function.php
blobcea14eb501d58a4d99ef92dba5af37c6930b57ab
1 <?hh
3 function foo() {
4 foo();
5 foo<>;
8 class C {
9 public function __construct(
10 public $x = foo(),
11 ) {
12 foo();
13 foo<>;
17 function test() {
18 foo();
19 foo<>;