php-src/ext/opcache/tests/preload_undef_const_2.inc

12 lines
120 B
PHP

<?php
trait T {
public function test() {
return 123;
}
}
class Foo {
const C = UNDEF;
use T;
}