--TEST--
Traits and forward_static_call().
--CREDITS--
Simas Toleikis simast@gmail.com
--FILE--
<?php

    
trait TestTrait {
        public static function 
test() {
            return 
'Forwarded '.forward_static_call(array('A''test'));
        }
    }

    class 
{
        public static function 
test() {
            return 
"Test A";
        }
    }

    class 
extends {
        use 
TestTrait;
    }

    echo 
B::test();

?>
--EXPECT--
Forwarded Test A