--TEST--
-You cannot overload astatic methods with a non static methods
+You cannot overload a static method with a non static method
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--
fail::show();
echo "Done\n"; // shouldn't be displayed of cause
-?>
+?>
--EXPECTF--
Fatal error: Cannot make static method pass::show() non static in class fail in %s on line %d
\ No newline at end of file
--TEST--
-You cannot overload a non static methods with a static methods
+You cannot overload a non static method with a static method
--SKIPIF--
<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?>
--FILE--