1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 00:02:20 +01:00
Files
archived-php-src/Zend/tests/new_args_without_ctor.phpt

11 lines
138 B
PHP

--TEST--
Argument of new on class without constructor are evaluated
--FILE--
<?php
new stdClass(print 'a', print 'b');
?>
--EXPECT--
ab