ru_php/Zend/tests/gh_17718_001.phpt

18 lines
335 B
PHP

--TEST--
GH-17718: Disallow calling abstract `__callStatic()` trampoline on an interface
--FILE--
<?php
interface Foo {
public static function __callStatic($method, $args);
}
Foo::bar();
?>
--EXPECTF--
Fatal error: Uncaught Error: Cannot call abstract method Foo::bar() in %s:%d
Stack trace:
#0 {main}
thrown in %s on line %d