summaryrefslogtreecommitdiff
path: root/ext/opcache/tests/preload_undef_const_2.inc
blob: 8c1c19c49baa193fda772c9b6eaa42522be1bd0b (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php
trait T {
    public function test() {
        return 123;
    }
}

class Foo {
    const C = UNDEF;
    use T;
}