xref: /PHP-5.5/tests/lang/comments.phpt (revision 51b05cd5)
1--TEST--
2#-style comments
3--FILE--
4#teste
5#teste2
6<?php
7
8#ahahah
9#ahhfhf
10
11echo '#ola'; //?
12echo "\n";
13echo 'uhm # ah'; #ah?
14echo "\n";
15echo "e este, # hein?";
16echo "\n";
17
18?>
19--EXPECT--
20#teste
21#teste2
22#ola
23uhm # ah
24e este, # hein?
25