xref: /PHP-5.5/Zend/tests/abstract-static.phpt (revision f8e44677)
1--TEST--
2Test for abstract static classes
3--FILE--
4<?php
5abstract class TestClass
6{
7    abstract static public function getName();
8}
9?>
10===DONE===
11--EXPECTF--
12
13Strict Standards: Static function TestClass::getName() should not be abstract in %sabstract-static.php on line %d
14===DONE===
15