summaryrefslogtreecommitdiff
path: root/tests/classes/abstract_user_call.phpt
diff options
context:
space:
mode:
Diffstat (limited to 'tests/classes/abstract_user_call.phpt')
-rwxr-xr-xtests/classes/abstract_user_call.phpt30
1 files changed, 0 insertions, 30 deletions
diff --git a/tests/classes/abstract_user_call.phpt b/tests/classes/abstract_user_call.phpt
deleted file mode 100755
index 0e1ddbe796..0000000000
--- a/tests/classes/abstract_user_call.phpt
+++ /dev/null
@@ -1,30 +0,0 @@
---TEST--
-ZE2 An abstrcat method cannot be called indirectly
---FILE--
-<?php
-
-abstract class test_base
-{
- abstract function func();
-}
-
-class test extends test_base
-{
- function func()
- {
- echo __METHOD__ . "()\n";
- }
-}
-
-$o = new test;
-
-$o->func();
-
-call_user_func(array($o, 'test_base::func'));
-
-?>
-===DONE===
---EXPECTF--
-test::func()
-
-Fatal error: Cannot call abstract method test_base::func() in %s on line %d