summaryrefslogtreecommitdiff
path: root/Zend/tests/line_const_in_array.phpt
blob: 181f67e3da659004572130205a2ce8071c63afed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Use of __LINE__ in arrays
--FILE--
<?php

var_dump([
    __LINE__,
    __LINE__,
    __LINE__,
]);

?>
--EXPECT--
array(3) {
  [0]=>
  int(4)
  [1]=>
  int(5)
  [2]=>
  int(6)
}