php-src/Zend/tests/abstract-static.phpt
Hannes Magnusson f8e4467725 Fix test
2006-10-20 14:42:37 +00:00

15 lines
285 B
PHP

--TEST--
Test for abstract static classes
--FILE--
<?php
abstract class TestClass
{
abstract static public function getName();
}
?>
===DONE===
--EXPECTF--
Strict Standards: Static function TestClass::getName() should not be abstract in %sabstract-static.php on line %d
===DONE===