summaryrefslogtreecommitdiffhomepage
path: root/test/test_samples/class_simple.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_samples/class_simple.cc')
-rw-r--r--test/test_samples/class_simple.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/test/test_samples/class_simple.cc b/test/test_samples/class_simple.cc
new file mode 100644
index 0000000..604922d
--- /dev/null
+++ b/test/test_samples/class_simple.cc
@@ -0,0 +1,10 @@
+#define main __ImageStart
+
+class Point {
+ int x;
+ int y;
+};
+
+int main() {
+ return 0;
+}