1--TEST--
2ZE2 A method cannot be redeclared abstract
3--FILE--
4<?php
5
6class pass {
7	function show() {
8		echo "Call to function show()\n";
9	}
10}
11
12class fail extends pass {
13	abstract function show();
14}
15
16echo "Done\n"; // Shouldn't be displayed
17?>
18--EXPECTF--
19Fatal error: Class fail contains 1 abstract method and must therefore be declared abstract or implement the remaining methods (fail::show) in %sabstract_redeclare.php on line %d
20