summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tests/lang/bug17882.phpt15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/lang/bug17882.phpt b/tests/lang/bug17882.phpt
deleted file mode 100644
index a3c3be2454..0000000000
--- a/tests/lang/bug17882.phpt
+++ /dev/null
@@ -1,15 +0,0 @@
---TEST--
-Bug #17882 (case sensitivity of functions in classes)
---FILE--
-<?php
-class X {
- function a() {}
- function A() {}
-}
-class Y {
- function A() {}
- function A() {}
-}
-?>
---EXPECTF--
-Fatal error: Cannot redeclare a() in %s/bug17882.php on line 4