1<?php 2 3trait Foo { 4 public function test() { 5 static $bar; 6 var_dump($bar); 7 } 8} 9 10class Bar { 11 use Foo; 12} 13