1--TEST--
2ZE2 An abstract class must be declared abstract
3--FILE--
4<?php
5
6class fail {
7	abstract function show();
8}
9
10echo "Done\n"; // shouldn't be displayed
11?>
12--EXPECTF--
13Fatal 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
14