// PointeeType (for pointer types), returns the type of the pointee. func (t Type) PointeeType() Type { o := C.clang_getPointeeType(t.c) return Type{o} }
// For pointer types, returns the type of the pointee. func (t Type) PointeeType() Type { return Type{C.clang_getPointeeType(t.c)} }