TypePHP 编译器
https://swoole.com/aot/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
551 B
32 lines
551 B
--TEST--
|
|
ZE2 An abstract class cannot be instantiated
|
|
--FILE--
|
|
<?php
|
|
|
|
abstract class fail {
|
|
abstract function show();
|
|
}
|
|
|
|
class pass extends fail {
|
|
function show() {
|
|
echo "Call to function show()\n";
|
|
}
|
|
}
|
|
function main() {
|
|
$t2 = new pass();
|
|
$t2->show();
|
|
|
|
$t = new fail();
|
|
$t->show();
|
|
|
|
echo "Done\n"; // shouldn't be displayed
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Call to function show()
|
|
|
|
Fatal error: Uncaught Error: Cannot instantiate abstract class fail in %s:%d
|
|
Stack trace:
|
|
#0 Unknown(0) : %s
|
|
#1 {main}
|
|
thrown in %s on line %d
|
|
|