parser/tests/fixtures/0215/code.php

11 lines
196 B
PHP
Raw Normal View History

2022-12-03 20:31:10 +01:00
<?php
trait foo {
// it's okay to have `parent` type
// since it's not known at this time if
// `foo` will have a parent.
public function bar(): parent {
exit(1);
}
}