php-src/tests/classes/abstract_not_declared.phpt

16 lines
436 B
Plaintext
Raw Normal View History

--TEST--
2003-08-09 14:48:47 +00:00
ZE2 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--
2005-05-03 09:52:01 +00:00
Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (fail::show) in %s on line %d