--TEST-- Bug #70681: Segfault when binding $this of internal instance method to null --FILE-- getClosure(new SplStack); $c = $c->bindTo(null); $c = (new ReflectionFunction('strlen'))->getClosure(); $c = $c->bindTo(null); var_dump($c("foo")); ?> --EXPECTF-- Warning: Cannot unbind $this of internal method in %s on line %d int(3)