summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_001.phpt
blob: c17764cdecdc8a471acc13f5bfb68bf0a1f6eb65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
errmsg: Non-abstract method must contain body
--FILE--
<?php

abstract class test {
}

class Impl extends Test {
	function Foo();
}

echo "Done\n";
?>
--EXPECTF--
Fatal error: Non-abstract method Impl::Foo() must contain body in %s on line %d