php-src/tests/classes/abstract_not_declared.phpt
2003-03-07 00:01:08 +00:00

16 lines
373 B
PHP

--TEST--
An abstract class must be declared abstract
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
<?php
class fail {
abstract function show();
}
echo "Done\n"; // shouldn't be displayed
?>
--EXPECTF--
Fatal error: Class fail contains abstract methods and must be declared abstract in %s on line %d