Security update for Core, with self-updated composer
[yaffs-website] / vendor / nikic / php-parser / test / code / prettyPrinter / stmt / groupUse.test
diff --git a/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/groupUse.test b/vendor/nikic/php-parser/test/code/prettyPrinter/stmt/groupUse.test
new file mode 100644 (file)
index 0000000..de086c8
--- /dev/null
@@ -0,0 +1,16 @@
+Group use declaration
+-----
+<?php
+use A\{B};
+use A\{B\C, D};
+use A\B\{C\D, E};
+use function A\{b\c, d};
+use const A\{B\C, D};
+use A\B\{C\D, function b\c, const D};
+-----
+use A\{B};
+use A\{B\C, D};
+use A\B\{C\D, E};
+use function A\{b\c, d};
+use const A\{B\C, D};
+use A\B\{C\D, function b\c, const D};