Security update for Core, with self-updated composer
[yaffs-website] / vendor / nikic / php-parser / test / code / parser / expr / clone.test
1 Clone
2 -----
3 <?php
4
5 clone $a;
6 -----
7 array(
8     0: Expr_Clone(
9         expr: Expr_Variable(
10             name: a
11         )
12     )
13 )