-=[ Mr. Bumblebee ]=-
_Indonesia_

Path : /usr/src/php/Zend/tests/
File Upload :
Current File : //usr/src/php/Zend/tests/bug32427.phpt

--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

Copyright © 2017 || Recoded By Mr.Bumblebee