summaryrefslogtreecommitdiff
path: root/Zend/tests/catch.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'Zend/tests/catch.phpt')
-rwxr-xr-xZend/tests/catch.phpt23
1 files changed, 0 insertions, 23 deletions
diff --git a/Zend/tests/catch.phpt b/Zend/tests/catch.phpt
deleted file mode 100755
index 0ec5cf7590..0000000000
--- a/Zend/tests/catch.phpt
+++ /dev/null
@@ -1,23 +0,0 @@
---TEST--
-catch shouldn't call __autoload
---FILE--
-<?php
-function __autoload($name) {
- echo("AUTOLOAD '$name'\n");
- eval("class $name {}");
-}
-
-
-try {
-} catch (A $e) {
-}
-
-try {
- throw new Exception();
-} catch (B $e) {
-} catch (Exception $e) {
- echo "ok\n";
-}
-?>
---EXPECT--
-ok