Skip to content
Commit 637da9de authored by Alexander Kornienko's avatar Alexander Kornienko
Browse files

Revert "[clang] template / auto deduction deduces common sugar"

This reverts commit d200db38, which causes a
clang crash. See https://reviews.llvm.org/D111283#3785755

Test case for convenience:
```
template <typename T>
using P = int T::*;

template <typename T, typename... A>
void j(P<T>, T, A...);

template <typename T>
void j(P<T>, T);

struct S {
  int b;
};
void g(P<S> k, S s) { j(k, s); }
```
parent 0b8a4438
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment