summaryrefslogtreecommitdiff
path: root/tests/lang/comments.phpt
blob: ca8b1d2aba542843eb482f0d16459189ad167fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
--TEST--
#-style comments
--FILE--
#teste
#teste2
<?php

#ahahah
#ahhfhf

echo '#ola'; //?
echo "\n";
echo 'uhm # ah'; #ah?
echo "\n";
echo "e este, # hein?";
echo "\n";

?>
--EXPECT--
#teste
#teste2
#ola
uhm # ah
e este, # hein?