mirror of
https://github.com/php/php-src.git
synced 2025-01-06 19:03:31 +08:00
13 lines
240 B
Plaintext
13 lines
240 B
Plaintext
|
--TEST--
|
||
|
Bug #71871: Interfaces allow final and abstract functions
|
||
|
--FILE--
|
||
|
<?php
|
||
|
|
||
|
interface test {
|
||
|
abstract function test();
|
||
|
}
|
||
|
|
||
|
?>
|
||
|
--EXPECTF--
|
||
|
Fatal error: Access type for interface method test::test() must be omitted in %s on line %d
|