parser/tests/fixtures/0215/code.php
azjezz 479f51913c
chore: remove build script
Signed-off-by: azjezz <azjezz@protonmail.com>
2022-12-05 18:36:04 +01:00

11 lines
196 B
PHP

<?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);
}
}