<html>
    <head>
      <base href="https://bugs.llvm.org/">
    </head>
    <body><span class="vcard"><a class="email" href="mailto:asynts@gmail.com" title="Paul Scharnofske <asynts@gmail.com>"> <span class="fn">Paul Scharnofske</span></a>
</span> changed
          <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED WORKSFORME - unqualified name lookup crash"
   href="https://bugs.llvm.org/show_bug.cgi?id=40608">bug 40608</a>
          <br>
             <table border="1" cellspacing="0" cellpadding="8">
          <tr>
            <th>What</th>
            <th>Removed</th>
            <th>Added</th>
          </tr>

         <tr>
           <td style="text-align:right;">Resolution</td>
           <td>---
           </td>
           <td>WORKSFORME
           </td>
         </tr>

         <tr>
           <td style="text-align:right;">Status</td>
           <td>NEW
           </td>
           <td>RESOLVED
           </td>
         </tr></table>
      <p>
        <div>
            <b><a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED WORKSFORME - unqualified name lookup crash"
   href="https://bugs.llvm.org/show_bug.cgi?id=40608#c1">Comment # 1</a>
              on <a class="bz_bug_link 
          bz_status_RESOLVED  bz_closed"
   title="RESOLVED WORKSFORME - unqualified name lookup crash"
   href="https://bugs.llvm.org/show_bug.cgi?id=40608">bug 40608</a>
              from <span class="vcard"><a class="email" href="mailto:asynts@gmail.com" title="Paul Scharnofske <asynts@gmail.com>"> <span class="fn">Paul Scharnofske</span></a>
</span></b>
        <pre>No longer reproducible:

$ clang++ --version
clang version 9.0.0 (<a href="https://github.com/llvm/llvm-project.git">https://github.com/llvm/llvm-project.git</a>
81eec58a0d55acde898e861ad99a6b329c364764)
Target: x86_64-unknown-linux-gnu
Thread model: posix
InstalledDir: /opt/bin

$ cat > main.cc <<EOF
template <typename T> struct A {
  template <bool U> void a() {}
};

template <typename T> struct B : A<T> {
  void b() {
    using A<T>::a;
    a<true>(); // crash
  }
};
EOF

$ clang++ -c main.cc
main.cc:8:13: error: expected expression
    a<true>(); // crash
            ^
1 error generated.</pre>
        </div>
      </p>


      <hr>
      <span>You are receiving this mail because:</span>

      <ul>
          <li>You are on the CC list for the bug.</li>
      </ul>
    </body>
</html>