summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMoriyoshi Koizumi <moriyoshi@php.net>2002-11-11 00:16:09 +0000
committerMoriyoshi Koizumi <moriyoshi@php.net>2002-11-11 00:16:09 +0000
commit5e2464ed38641f5579dd4da60a6efbd9cf01a5cb (patch)
tree212cd623106685d838d9878e8118aad4a9eae7f5 /tests
parent85e9468b1dbf0ffb58d3ac50b055257a08078387 (diff)
downloadphp-git-5e2464ed38641f5579dd4da60a6efbd9cf01a5cb.tar.gz
Removed the test. I should have been more aware of variability of
error messages. Thanks Ilia.
Diffstat (limited to 'tests')
-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