File:  [ELWIX - Embedded LightWeight unIX -] / embedaddon / php / Zend / tests / traits / bug55554d.phpt
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs - revision graph
Tue May 29 12:34:36 2012 UTC (12 years, 2 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, HEAD
php 5.4.3+patches

--TEST--
Bug #55137 (Legacy constructor not registered for class)
--FILE--
<?php

// Test mixed constructors from different traits, we are more strict about
// these cases, since that can lead to un-expected behavior.
// It is not consistent with the normal constructor handling, but
// here we have a chance to be more strict for the new traits.

trait TNew {
    public function __construct() {
        echo "TNew executed\n";
    }
}

trait TLegacy {
    public function ReportCollision() {
        echo "ReportCollision executed\n";
    }
}

class ReportCollision {
    use TNew, TLegacy;
}

$o = new ReportCollision;

--EXPECTF--

Fatal error: ReportCollision has colliding constructor definitions coming from traits in %s on line %d


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