summaryrefslogtreecommitdiff
path: root/tests/classes/destructor_and_echo.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/destructor_and_echo.phpt')
-rwxr-xr-xtests/classes/destructor_and_echo.phpt24
1 files changed, 0 insertions, 24 deletions
diff --git a/tests/classes/destructor_and_echo.phpt b/tests/classes/destructor_and_echo.phpt
deleted file mode 100755
index c6c6f23a71..0000000000
--- a/tests/classes/destructor_and_echo.phpt
+++ /dev/null
@@ -1,24 +0,0 @@
---TEST--
-Destructors and echo
---FILE--
-<?php
-
-class Test
-{
- function __construct() {
- echo __METHOD__ . "\n";
- }
-
- function __destruct() {
- echo __METHOD__ . "\n";
- }
-}
-
-$o = new Test;
-
-?>
-===DONE===
---EXPECT--
-Test::__construct
-===DONE===
-Test::__destruct