mirror of
https://github.com/php/php-src.git
synced 2024-12-18 06:21:41 +08:00
ded3d984c6
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
15 lines
139 B
PHP
15 lines
139 B
PHP
--TEST--
|
|
Instantiate stdClass
|
|
--FILE--
|
|
<?php
|
|
|
|
$obj = new stdClass;
|
|
|
|
echo get_class($obj)."\n";
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECT--
|
|
stdClass
|
|
Done
|