<?php

trait T {
    public function __toString(): int {
        return "ok";
    }
}

?>