new_args_without_ctor.phpt 138 B

12345678910
  1. --TEST--
  2. Argument of new on class without constructor are evaluated
  3. --FILE--
  4. <?php
  5. new stdClass(print 'a', print 'b');
  6. ?>
  7. --EXPECT--
  8. ab