sdkrystian wrote:

Repro:
```cpp
template<typename T>
struct Typo {
  Typo(const Typo& t) {   
    t->typo; // error
    t->Typp; // error
    t->Tzpo; // error
    t->ty; // ok
  }
};
```

https://github.com/llvm/llvm-project/pull/90152
_______________________________________________
cfe-commits mailing list
cfe-commits@lists.llvm.org
https://lists.llvm.org/cgi-bin/mailman/listinfo/cfe-commits

Reply via email to