Baseline commit for thrift, which is pillar v2

Reviewed By: aditya




git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@664711 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/compiler/test/test.thrift b/compiler/test/test.thrift
new file mode 100644
index 0000000..b2baab3
--- /dev/null
+++ b/compiler/test/test.thrift
@@ -0,0 +1,27 @@
+typedef i32 gozone_t
+
+enum numberz
+{
+  ONE = 1,
+  TWO,
+  THREE,
+  FIVE = 5,
+  SIX,
+  EIGHT = 8
+}
+
+struct things
+{
+  u32 first_num,
+  u32 second_num,
+  u32 third_num,
+  u32 fourth_num
+}
+
+service worker
+{
+  void   funky_void()
+  string funky_string(string thing)
+  u32    funky_u32(u32 thing)
+  i32    funky_i32(i32 thing)
+}