summaryrefslogtreecommitdiff
path: root/Zend/tests/bug32427.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/bug32427.phpt')
-rw-r--r--Zend/tests/bug32427.phpt19
1 files changed, 0 insertions, 19 deletions
diff --git a/Zend/tests/bug32427.phpt b/Zend/tests/bug32427.phpt
deleted file mode 100644
index 0a5cc4f893..0000000000
--- a/Zend/tests/bug32427.phpt
+++ /dev/null
@@ -1,19 +0,0 @@
---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