1
0
mirror of https://github.com/php/php-src.git synced 2026-04-27 01:48:26 +02:00
Files
archived-php-src/ext/opcache/tests/preload_undef_const_2.inc
T

12 lines
120 B
PHP

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