mizvekov wrote:

Thanks for the report, this is the reduced reproducer:
```C++
template <typename> struct QWindowSystemHelper {
  template <typename EventType> static void handleEvent() {
    QWindowSystemHelper<int>::handleEvent<EventType>();
  }
};
template <>
template <typename EventType>
void QWindowSystemHelper<int>::handleEvent() {
  static_assert(__is_same(EventType, long));
}
template void QWindowSystemHelper<void>::handleEvent<long>();
```

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

Reply via email to