]> granicus.if.org Git - php/commitdiff
Per request by Derick and Marcus.
authorSebastian Bergmann <sebastian@php.net>
Sun, 1 Jun 2003 14:15:44 +0000 (14:15 +0000)
committerSebastian Bergmann <sebastian@php.net>
Sun, 1 Jun 2003 14:15:44 +0000 (14:15 +0000)
tests/run-test/test009.phpt [new file with mode: 0644]

diff --git a/tests/run-test/test009.phpt b/tests/run-test/test009.phpt
new file mode 100644 (file)
index 0000000..f6412cb
--- /dev/null
@@ -0,0 +1,12 @@
+--TEST--
+print_r(Object)
+--FILE--
+<?php
+class Foo {}
+$foo = new Foo;
+print_r($foo);
+?>
+--EXPECTF--
+foo Object
+(
+)