1<?php
2trait T {
3    public function test() {
4        return 123;
5    }
6}
7
8class Foo {
9    const C = UNDEF;
10    use T;
11}
12