Version 1
[yaffs-website] / vendor / symfony / class-loader / Tests / Fixtures / php5.5 / class_cons.php
diff --git a/vendor/symfony/class-loader/Tests/Fixtures/php5.5/class_cons.php b/vendor/symfony/class-loader/Tests/Fixtures/php5.5/class_cons.php
new file mode 100644 (file)
index 0000000..0ed8d77
--- /dev/null
@@ -0,0 +1,11 @@
+<?php
+
+namespace ClassCons;
+
+class Foo
+{
+    public function __construct()
+    {
+        \Foo\TBar/* foo */::class;
+    }
+}