1--TEST--
2ZE2 An interface method cannot be private
3--FILE--
4<?php
5
6interface if_a {
7    abstract private function err();
8}
9
10?>
11--EXPECTF--
12Fatal error: Access type for interface method if_a::err() must be public in %s on line %d
13