xref: /php-src/Zend/tests/errmsg/errmsg_018.phpt (revision 0b94cf65)
1--TEST--
2errmsg: static abstract function
3--FILE--
4<?php
5
6class test {
7    static abstract function foo ();
8}
9
10echo "Done\n";
11?>
12--EXPECTF--
13Fatal error: Class test declares abstract method foo() and must therefore be declared abstract in %s on line %d
14