Index: tests/vector.cfa
===================================================================
--- tests/vector.cfa	(revision 62cc2318c75fe73c7ff1e211ec1614528d1486f5)
+++ tests/vector.cfa	(revision 766ec62c20bf5c91a2ea217b0fd35a6df01ccc05)
@@ -14,6 +14,6 @@
 //
 
+#include <vector.hfa>
 #include <fstream.hfa>
-#include <vector.hfa>
 
 #undef assert
@@ -28,4 +28,8 @@
 int main() {
 	vector( int ) iv;
+
+	assert( ((uintptr_t)&iv.storage.storage ) == (((uintptr_t)&iv)) );
+	assert( ((uintptr_t)&iv.storage.capacity) == (((uintptr_t)&iv) + sizeof(void *)) );
+	assert( ((uintptr_t)&iv.size            ) == (((uintptr_t)&iv) + sizeof(void *) + sizeof(size_t)) );
 
 	assert( empty( &iv ) );
