blob: d1f4274bd110a02780d39d167792b2aeb7fc5c45 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
--TEST--
errmsg: cannot use 'parent' as interface name
--FILE--
<?php
class test implements parent {
}
echo "Done\n";
?>
--EXPECTF--
Fatal error: Cannot use 'parent' as interface name as it is reserved in %s on line %d
|