File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests / bug65579.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Mon Oct 14 08:02:49 2013 UTC (11 years, 5 months ago) by misho
Branches: php, MAIN
CVS tags: v5_4_29p0, v5_4_29, v5_4_20p0, v5_4_20, HEAD
v 5.4.20

--TEST--
Bug #65579 (Using traits with get_class_methods causes segfault)
--FILE--
<?php
trait ParentTrait {
    public function testMethod() { }
}

trait ChildTrait {
    use ParentTrait {
        testMethod as testMethodFromParentTrait;
    }
    public function testMethod() { }
}

class TestClass {
    use ChildTrait;
}

$obj = new TestClass();
var_dump(get_class_methods($obj));
?>
--EXPECT--
array(2) {
  [0]=>
  string(10) "testMethod"
  [1]=>
  string(25) "testmethodfromparenttrait"
}

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