summaryrefslogtreecommitdiff
path: root/7p44.cpp
diff options
context:
space:
mode:
Diffstat (limited to '7p44.cpp')
-rw-r--r--7p44.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/7p44.cpp b/7p44.cpp
new file mode 100644
index 0000000..925f7d6
--- /dev/null
+++ b/7p44.cpp
@@ -0,0 +1,30 @@
+#include <iostream>
+#include <vector>
+/*
+ *
+ * 7.44
+ *
+ *
+ */
+
+class NoDefault {
+public:
+ NoDefault(int j): i(j) {}
+ int geti() {return i;}
+private:
+ int i;
+};
+
+class C {
+public:
+ C(): nd(0) { }
+private:
+ NoDefault nd;
+};
+
+int main () {
+
+ //std::vector<NoDefault> vnd(10); // NOT legal
+ std::vector<C> vc(10); // LEGAL
+ return 0;
+}