bug81192_trait.inc 84 B

1234567
  1. <?php
  2. trait T {
  3. public function foo(): string {
  4. return "oops";
  5. }
  6. }