#ifndef _HIR_TYPE_HPP_ #define _HIR_TYPE_HPP_ #pragma once #include namespace HIR { class TypeRef { // Options: // - Primitive // - Parameter // - Path // - Array // - Tuple // - Borrow // - Pointer }; } // namespace HIR #endif