Annotation of embedaddon/php/tests/lang/bug26869.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Bug #26869 (constant as the key of static array)
                      3: --FILE--
                      4: <?php
                      5:        define("A", "1");
                      6:        static $a=array(A => 1);
                      7:        var_dump($a);
                      8:        var_dump(isset($a[A]));
                      9: ?>
                     10: --EXPECT--
                     11: array(1) {
                     12:   [1]=>
                     13:   int(1)
                     14: }
                     15: bool(true)

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