1--TEST--
2ReflectionFunction::isDeprecated
3--CREDITS--
4Stefan Koopmanschap <stefan@phpgg.nl>
5TestFest PHP|Tek
6--FILE--
7<?php
8// We currently don't have any deprecated functions :/
9$rc = new ReflectionFunction('var_dump');
10var_dump($rc->isDeprecated());
11--EXPECT--
12bool(false)
13