1--TEST--
2Reflection::isClosure
3--CREDITS--
4Stefan Koopmanschap <stefan@phpgg.nl>
5TestFest PHP|Tek
6--FILE--
7<?php
8$closure = function($param) { return "this is a closure"; };
9$rc = new ReflectionFunction($closure);
10var_dump($rc->isClosure());
11?>
12--EXPECT--
13bool(true)
14