<html>
    <head>
      <base href="http://bugs.llvm.org/">
    </head>
    <body><table border="1" cellspacing="0" cellpadding="8">
        <tr>
          <th>Bug ID</th>
          <td><a class="bz_bug_link 
          bz_status_NEW "
   title="NEW - Duplicate "no member named 'x' in namespace 'y'" error message"
   href="http://bugs.llvm.org/show_bug.cgi?id=32521">32521</a>
          </td>
        </tr>

        <tr>
          <th>Summary</th>
          <td>Duplicate "no member named 'x' in namespace 'y'" error message
          </td>
        </tr>

        <tr>
          <th>Product</th>
          <td>clang
          </td>
        </tr>

        <tr>
          <th>Version</th>
          <td>trunk
          </td>
        </tr>

        <tr>
          <th>Hardware</th>
          <td>PC
          </td>
        </tr>

        <tr>
          <th>OS</th>
          <td>All
          </td>
        </tr>

        <tr>
          <th>Status</th>
          <td>NEW
          </td>
        </tr>

        <tr>
          <th>Severity</th>
          <td>enhancement
          </td>
        </tr>

        <tr>
          <th>Priority</th>
          <td>P
          </td>
        </tr>

        <tr>
          <th>Component</th>
          <td>C++
          </td>
        </tr>

        <tr>
          <th>Assignee</th>
          <td>unassignedclangbugs@nondot.org
          </td>
        </tr>

        <tr>
          <th>Reporter</th>
          <td>llvm-bugs@justinbogner.com
          </td>
        </tr>

        <tr>
          <th>CC</th>
          <td>dgregor@apple.com, llvm-bugs@lists.llvm.org
          </td>
        </tr></table>
      <p>
        <div>
        <pre>A duplicate error message is emitted involving missing namespace members in
template parameters. Reproduces with the following:

  template <typename X> class Qux {};
  namespace foo {}
  void bar(Qux<foo::baz> x) {}

Which emits two identical errors like so:

  % clang++ -x c++ -fsyntax-only foo.cpp
  foo.cpp:3:19: error: no member named 'baz' in namespace 'foo'
  void bar(Qux<foo::baz> x) {}
               ~~~~~^
  foo.cpp:3:19: error: no member named 'baz' in namespace 'foo'
  void bar(Qux<foo::baz> x) {}
               ~~~~~^
  2 errors 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>