Handle this typehints
[hiphop-php.git] / hphp / test / quick / debug_backtrace_trait_helper.inc
blob281fd8db68c9ed571ea5ebf88d3a2843f3423a6b
1 <?php
3 class P {
4   public function foo() {
5     bar();
6   }
9 function print_backtrace() {
10   var_dump(debug_backtrace());
13 trait T {
14   public function bar(stdClass $s) {
15     print_backtrace();
16   }