1--TEST--
2ReflectionProperty::get/setValue() on internal static property
3--EXTENSIONS--
4zend_test
5--FILE--
6<?php
7
8$rp = new ReflectionProperty('_ZendTestClass', '_StaticProp');
9$rp->setValue(new _ZendTestClass(), 42);
10var_dump($rp->getValue());
11
12?>
13--EXPECT--
14int(42)
15