/** ** \file ast/ty.cc ** \brief Implementation of ast::Ty. */ #include #include namespace ast { Ty::Ty(const Location& location) : Ast(location) , Typable() , TypeConstructor() {} } // namespace ast