summaryrefslogtreecommitdiff
path: root/Zend/tests/abstract-static.phpt
blob: c4ab8f2483c7a8f8bde3b1856fbafe2fbc4e0be8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--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===