mirror of
https://github.com/php/php-src.git
synced 2025-01-10 13:03:54 +08:00
12 lines
120 B
PHP
12 lines
120 B
PHP
<?php
|
|
trait T {
|
|
public function test() {
|
|
return 123;
|
|
}
|
|
}
|
|
|
|
class Foo {
|
|
const C = UNDEF;
|
|
use T;
|
|
}
|