mirror of
https://github.com/php/php-src.git
synced 2026-04-18 05:21:02 +02:00
10 lines
65 B
PHP
10 lines
65 B
PHP
<?php
|
|
|
|
trait T {
|
|
public X|Y $prop;
|
|
}
|
|
|
|
class C {
|
|
use T;
|
|
}
|