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

15 lines
285 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--
2006-10-20 14:42:37 +00:00
Strict Standards: Static function TestClass::getName() should not be abstract in %sabstract-static.php on line %d
===DONE===