diff --git a/bond-haskell.cabal b/bond-haskell.cabal
--- a/bond-haskell.cabal
+++ b/bond-haskell.cabal
@@ -1,5 +1,5 @@
 name:                bond-haskell
-version:             0.1.3.0
+version:             0.1.4.0
 synopsis:            Runtime support for BOND serialization
 description:         Bond is a cross-platform framework for handling schematized
                      data. It supports cross-language de/serialization and
@@ -62,7 +62,7 @@
                        Data.Bond.Internal.Utils
                        Data.Bond.Internal.Utils
   build-depends:       base >= 4.7 && < 5
-                     , bond-haskell-compiler >= 0.1.3.0 && < 0.1.4
+                     , bond-haskell-compiler >= 0.1.4.0 && < 0.1.5
                      , aeson
                      , array
                      , binary >= 0.7.0.0
diff --git a/test/simple_schemas/test.bond b/test/simple_schemas/test.bond
--- a/test/simple_schemas/test.bond
+++ b/test/simple_schemas/test.bond
@@ -1,5 +1,7 @@
 namespace unittest.simple
 
+using mylist<T> = list<T>;
+
 struct base {
     10: int16 m_int16;
     20: string m_string;
@@ -7,7 +9,7 @@
 
 struct inner : base {
     10: uint64 m_uint64;
-    20: list<uint32> m_uint32;
+    20: mylist<uint32> m_uint32;
 }
 
 struct outer {
