1--TEST--
2Reflection::getClosureThis()
3--SKIPIF--
4<?php
5if (!extension_loaded('reflection')) print 'skip';
6?>
7--FILE--
8<?php
9$closure = function($param) { return "this is a closure"; };
10$rf = new ReflectionFunction($closure);
11var_dump($rf->getClosureThis());
12echo "Done!\n";
13--EXPECTF--
14NULL
15Done!
16