mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
12 lines
229 B
PHP
12 lines
229 B
PHP
--TEST--
|
|
Interfaces cannot be readonly
|
|
--FILE--
|
|
<?php
|
|
|
|
readonly interface Foo
|
|
{
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Parse error: syntax error, unexpected token "interface", expecting "abstract" or "final" or "readonly" or "class" in %s on line %d
|