1
0
mirror of https://github.com/php/php-src.git synced 2026-03-24 16:22:37 +01:00
Files
archived-php-src/tests/classes/interface_member.phpt
2024-07-14 11:55:03 +02:00

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