1--TEST-- 2ZE2 An abstract class must be declared abstract 3--SKIPIF-- 4<?php if (version_compare(zend_version(), '2.0.0-dev', '<')) die('skip ZendEngine 2 needed'); ?> 5--FILE-- 6<?php 7 8class fail { 9 abstract function show(); 10} 11 12echo "Done\n"; // shouldn't be displayed 13?> 14--EXPECTF-- 15Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (fail::show) in %s on line %d 16