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