xref: /PHP-7.2/Zend/tests/return_types/024.phpt (revision f1d7e3ca)
1--TEST--
2Return type of self is not allowed in function
3--FILE--
4<?php
5
6function test(): self {}
7--EXPECTF--
8Fatal error: Cannot use "self" when no class scope is active in %s on line 3
9