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 omitted in %s on line %d 13