closure_from_callable_non_static_statically.phpt   [plain text]


--TEST--
Testing Closure::fromCallable() functionality: Getting non-static method statically
--FILE--
<?php

class A {
    public function method() {
    }
}

try {
    $fn = Closure::fromCallable(['A', 'method']);
    $fn();
} catch (TypeError $e) {
    echo $e->getMessage(), "\n";
}

?>
--EXPECT--
Failed to create closure from callable: non-static method A::method() should not be called statically