1
0
mirror of https://github.com/php/php-src.git synced 2026-03-26 09:12:14 +01:00
Files
archived-php-src/Zend/tests/bug32427.phpt
Antony Dovgal ccd97f3a21 fix test names
2007-05-07 17:23:53 +00:00

20 lines
326 B
PHP

--TEST--
Bug #32427 (Interfaces are not allowed 'static' access modifier)
--FILE--
<?php
interface Example {
public static function sillyError();
}
class ExampleImpl implements Example {
public static function sillyError() {
echo "I am a silly error\n";
}
}
ExampleImpl::sillyError();
?>
--EXPECT--
I am a silly error