503f75d08b
These names don't make sense now that we run both suites the same way.
5 linhas
104 B
PHP
5 linhas
104 B
PHP
<?php
|
|
trait C { final function method1() { yield 1; } }
|
|
class A { use C; }
|
|
class B extends A { use C; }
|