blob: 4ebc0109b41a8b2a1382978f6d18ec13d9ab4802 [file]
<?php
trait foo {
public $bar;
public function &getBar() {
return $this->bar;
}
}
?>