mirror of
https://github.com/php/php-src.git
synced 2026-03-24 08:12:21 +01:00
RFC: https://wiki.php.net/rfc/property-hooks Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>
12 lines
195 B
PHP
12 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
|