mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
11 lines
193 B
PHP
11 lines
193 B
PHP
--TEST--
|
|
ZE2 An interface cannot have properties
|
|
--FILE--
|
|
<?php
|
|
|
|
interface if_a {
|
|
public $member;
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Interfaces may not include member variables in %s on line %d
|