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.
16 lines
333 B
16 lines
333 B
--TEST--
|
|
ZE2 A final method cannot be abstract
|
|
--SKIPIF--
|
|
<?php die('skip, failed at compile time'); ?>
|
|
--FILE--
|
|
<?php
|
|
|
|
class fail {
|
|
final abstract function show();
|
|
}
|
|
function main() {
|
|
echo "Done\n"; // Shouldn't be displayed
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot use the final modifier on an abstract method in %s on line %d
|
|
|