Annotation of embedaddon/php/Zend/tests/bug32428.phpt, revision 1.1.1.2

1.1       misho       1: --TEST--
1.1.1.2 ! misho       2: Bug #32428 (The @ warning error suppression operator is broken)
1.1       misho       3: --FILE--
                      4: <?php 
                      5:   $data = @$not_exists; 
                      6:   $data = @($not_exists); 
                      7:   $data = @!$not_exists; 
                      8:   $data = !@$not_exists; 
                      9:   $data = @($not_exists+1); 
                     10:   echo "ok\n";
                     11: ?>
                     12: --EXPECT--
                     13: ok

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