diff options
Diffstat (limited to 'src/hir/type.cpp')
-rw-r--r-- | src/hir/type.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/hir/type.cpp b/src/hir/type.cpp new file mode 100644 index 00000000..45e50e6e --- /dev/null +++ b/src/hir/type.cpp @@ -0,0 +1,12 @@ +/* + */ +#include "type.hpp" + +namespace HIR { + +TypeRef::TypeRef(::HIR::Path path): + type( TypeRef::Data::make_Path(mv$(path)) ) +{ +} + +} |