Annotation of embedaddon/php/Zend/tests/bug65911.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #65911 (scope resolution operator - strange behavior with $this)
                      3: --FILE--
                      4: <?php
                      5: class A {}
                      6: 
                      7: class B
                      8: {
                      9:        public function go()
                     10:        {
                     11:                $this->foo = 'bar';
                     12:                echo A::$this->foo; // should not output 'bar'
                     13:        }
                     14: }
                     15: 
                     16: $obj = new B();
                     17: $obj->go();
                     18: ?>
                     19: --EXPECTF--
                     20: Fatal error: Access to undeclared static property: A::$this in %s on line %d

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>