php-src/Zend/tests/abstract-static.phpt

14 lines
265 B
Plaintext
Raw Normal View History

2006-05-12 10:02:31 +00:00
--TEST--
Test for abstract static classes
--FILE--
<?php
2006-07-09 16:56:22 +00:00
abstract class TestClass
2006-05-12 10:02:31 +00:00
{
abstract static public function getName();
}
?>
2006-07-09 16:56:22 +00:00
===DONE===
--EXPECTF--
Fatal error: Static function TestClass::getName() cannot be abstract in %sabstract-static.php on line %d