mirror of
https://github.com/php/php-src.git
synced 2024-12-14 04:16:30 +08:00
11 lines
138 B
PHP
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
|