10 lines
65 B
PHP
10 lines
65 B
PHP
<?php
|
|
|
|
trait T {
|
|
public X|Y $prop;
|
|
}
|
|
|
|
class C {
|
|
use T;
|
|
}
|