erichkeane wrote: > @yxsamliu The type of `this` is always a pointer. The class member access > operator may only be overloaded for operands of class type. In your reduced > example, could you provide a value of `T` that would instantiate to a valid > specialization?
Agreed, this is another case where your change is actually finding a bug! @yxsamliu : see https://godbolt.org/z/PK38rodax If you intend to call `A<typename T>::operator->` you have to spell it like this: https://godbolt.org/z/c9s3aqa7P https://github.com/llvm/llvm-project/pull/90152 _______________________________________________ cfe-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits
