2 changed files with 30 additions and 1 deletions
@ -0,0 +1,19 @@ |
|||||||
|
--TEST-- |
||||||
|
empty else with comments |
||||||
|
--FILE-- |
||||||
|
<?php |
||||||
|
function main() { |
||||||
|
if (true) { |
||||||
|
echo 'success'; |
||||||
|
} else { |
||||||
|
// 1 |
||||||
|
# 1 |
||||||
|
/** |
||||||
|
* 1 |
||||||
|
* 2 |
||||||
|
*/ |
||||||
|
} |
||||||
|
} |
||||||
|
?> |
||||||
|
--EXPECT-- |
||||||
|
success |
||||||
Loading…
Reference in new issue