1--TEST--
2Test ReflectionProperty::__toString() usage.
3--FILE--
4<?php
5
6class TestClass {
7    public $proper = 5;
8}
9
10echo new ReflectionProperty('TestClass', 'proper');
11
12?>
13--EXPECT--
14Property [ <default> public $proper ]
15