sync the repo
[hiphop-php.git] / hphp / test / slow / new_object_expression / 784.php
blobc7c024b3cebd8bd7cde4692796268b1fab2c7d59
1 <?hh
3 <<__DynamicallyConstructible>>
4 class X {
6 class Y {
8 function test($x) :mixed{
9 return new $x($x = 'Y');
12 <<__EntryPoint>>
13 function main_784() :mixed{
14 var_dump(test('X'));