php-src/tests/classes/interface_member.phpt
Ilija Tovilo 780a8280d2
[RFC] Property hooks (#13455)
RFC: https://wiki.php.net/rfc/property-hooks

Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
2024-07-14 11:55:03 +02:00

11 lines
195 B
PHP

--TEST--
ZE2 An interface cannot have properties
--FILE--
<?php
interface if_a {
public $member;
}
?>
--EXPECTF--
Fatal error: Interfaces may only include hooked properties in %s on line %d