summaryrefslogtreecommitdiff
path: root/Zend/tests/errmsg_001.phpt
blob: e629f19c4055689768a31f59585d4b06a053810d (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