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

15 lines
285 B
Plaintext
Raw Normal View History

2006-05-12 18:02:31 +08:00
--TEST--
Test for abstract static classes
--FILE--
<?php
2006-07-10 00:56:22 +08:00
abstract class TestClass
2006-05-12 18:02:31 +08:00
{
abstract static public function getName();
}
?>
2006-07-10 00:56:22 +08:00
===DONE===
--EXPECTF--
2006-10-20 22:42:37 +08:00
Strict Standards: Static function TestClass::getName() should not be abstract in %sabstract-static.php on line %d
===DONE===