On Wed, 25 Sep 2019 at 11:48, Peter Collingbourne via cfe-commits <
cfe-commits@lists.llvm.org> wrote:
> Hi Richard, it looks like this commit caused an assertion failure on the
> following input:
>
> $ cat test2.ii
> # 2 "" 3
> namespace a {
> enum { b };
> }
> template void c() {
> auto d = [
Hi Richard, it looks like this commit caused an assertion failure on the
following input:
$ cat test2.ii
# 2 "" 3
namespace a {
enum { b };
}
template void c() {
auto d = [](auto) {
using a::b;
b;
};
d(0);
}
void e() { c; }
$ clang test2.ii
clang: ../clang/lib/Sema/SemaTemplateInsta