mirror of
https://github.com/php/php-src.git
synced 2024-12-02 22:34:55 +08:00
20 lines
318 B
PHP
20 lines
318 B
PHP
--TEST--
|
|
Testing class_alias() with abstract class using an arbitrary class name as alias
|
|
--FILE--
|
|
<?php
|
|
|
|
abstract class foo { }
|
|
|
|
class_alias('foo', "\0");
|
|
|
|
$a = "\0";
|
|
|
|
new $a;
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Uncaught Error: Cannot instantiate abstract class foo in %s:%d
|
|
Stack trace:
|
|
#0 {main}
|
|
thrown in %s on line %d
|