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

1.1       misho       1: --TEST--
                      2: #-style comments
                      3: --FILE--
                      4: #teste
                      5: #teste2
                      6: <?php
                      7: 
                      8: #ahahah
                      9: #ahhfhf
                     10: 
                     11: echo '#ola'; //?
                     12: echo "\n";
                     13: echo 'uhm # ah'; #ah?
                     14: echo "\n";
                     15: echo "e este, # hein?";
                     16: echo "\n";
                     17: 
                     18: ?>
                     19: --EXPECT--
                     20: #teste
                     21: #teste2
                     22: #ola
                     23: uhm # ah
                     24: e este, # hein?

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