Index: tests/includes/.expect/vector-containers.txt
===================================================================
--- tests/includes/.expect/vector-containers.txt	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
+++ tests/includes/.expect/vector-containers.txt	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
@@ -0,0 +1,1 @@
+done
Index: tests/includes/.expect/vector-fstream.txt
===================================================================
--- tests/includes/.expect/vector-fstream.txt	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
+++ tests/includes/.expect/vector-fstream.txt	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
@@ -0,0 +1,1 @@
+done
Index: tests/includes/.expect/vector-sequence.txt
===================================================================
--- tests/includes/.expect/vector-sequence.txt	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
+++ tests/includes/.expect/vector-sequence.txt	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
@@ -0,0 +1,1 @@
+done
Index: tests/includes/about.txt
===================================================================
--- tests/includes/about.txt	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
+++ tests/includes/about.txt	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
@@ -0,0 +1,4 @@
+The "includes" tests verify that combinations of includes can coexist in one compile unit, without
+causing false compile errors.
+
+The combination of includes at the top of each *.cfa is the SUT; that *.cfa is named accordingly.
Index: tests/includes/vector-containers.cfa
===================================================================
--- tests/includes/vector-containers.cfa	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
+++ tests/includes/vector-containers.cfa	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
@@ -0,0 +1,6 @@
+#include <vector.hfa>
+#include <bits/containers.hfa>
+
+int main() {
+    printf("done\n");
+}
Index: tests/includes/vector-fstream.cfa
===================================================================
--- tests/includes/vector-fstream.cfa	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
+++ tests/includes/vector-fstream.cfa	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
@@ -0,0 +1,6 @@
+#include <vector.hfa>
+#include <fstream.hfa>
+
+int main() {
+    printf("done\n");
+}
Index: tests/includes/vector-sequence.cfa
===================================================================
--- tests/includes/vector-sequence.cfa	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
+++ tests/includes/vector-sequence.cfa	(revision d0502a3aee721f5f4e468913c7db6c2aab56025c)
@@ -0,0 +1,6 @@
+#include <vector.hfa>
+#include <bits/sequence.hfa>
+
+int main() {
+    printf("done\n");
+}
