summaryrefslogtreecommitdiff
path: root/Zend/tests/bug70223.phpt
blob: 7f1633a78e1f9229d224681eece3c16e73d021df (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Bug #70223 (Incrementing value returned by magic getter)
--FILE--
<?php

class A {

    private $foo = 0;

    public function &__get($foo){ return $this->foo; }

}

$a = new A;
echo $a->f++;
echo $a->f++;
echo $a->f++;
?>
--EXPECT--
012