blob: 1781ff07aa8bfe47eafbcbbcc11e5f855a6ad6a0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
Bug #71871: Interfaces allow final and abstract functions
--FILE--
<?php
interface test {
final function test();
}
?>
--EXPECTF--
Fatal error: Access type for interface method test::test() must be omitted in %s on line %d
|