summaryrefslogtreecommitdiff
path: root/9p7.cpp
diff options
context:
space:
mode:
Diffstat (limited to '9p7.cpp')
-rw-r--r--9p7.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/9p7.cpp b/9p7.cpp
new file mode 100644
index 0000000..ec19880
--- /dev/null
+++ b/9p7.cpp
@@ -0,0 +1,16 @@
+#include <iostream>
+#include <vector>
+
+/*
+ *
+ * 9.7
+ *
+ *
+ */
+
+int main () {
+ std::vector<int> a(10,10);
+ auto i = a.size(); // It's a std::vector<int>::size_type
+ if(i)
+ return 0;
+}