File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / tests / lang / 032.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue Feb 21 23:48:06 2012 UTC (12 years, 4 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_3elwix, v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, v5_4_17p0, v5_4_17, v5_3_10, HEAD
php

    1: --TEST--
    2: Class method registration
    3: --FILE--
    4: <?php
    5: class A {
    6: 	function foo() {}
    7: }
    8: 
    9: class B extends A {
   10: 	function foo() {}
   11: }
   12: 
   13: class C extends B {
   14: 	function foo() {}
   15: }
   16: 
   17: class D extends A {
   18: }
   19: 
   20: class F extends D {
   21: 	function foo() {}
   22: }
   23: 
   24: // Following class definition should fail, but cannot test
   25: /*
   26: class X {
   27: 	function foo() {}
   28: 	function foo() {}
   29: }
   30: */
   31: 
   32: echo "OK\n";
   33: ?>
   34: --EXPECT--
   35: OK
   36: 

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>