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