php-src/tests/classes/interface_member.phpt
Ilija Tovilo 269c8dac1d
Implement enums
RFC: https://wiki.php.net/rfc/enumerations

Co-authored-by: Nikita Popov <nikita.ppv@gmail.com>

Closes GH-6489.
2021-03-17 19:08:03 +01:00

11 lines
187 B
PHP

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