summaryrefslogtreecommitdiff
path: root/7p36.cpp
diff options
context:
space:
mode:
Diffstat (limited to '7p36.cpp')
-rw-r--r--7p36.cpp17
1 files changed, 17 insertions, 0 deletions
diff --git a/7p36.cpp b/7p36.cpp
new file mode 100644
index 0000000..6f886fc
--- /dev/null
+++ b/7p36.cpp
@@ -0,0 +1,17 @@
+
+/*
+ *
+ * 7.36
+ *
+ *
+ */
+
+struct X {
+ X (int i, int j): base(i), rem(i % j) { }
+ int base, rem;
+};
+
+int main () {
+
+ return 0;
+}