https://llvm.org/bugs/show_bug.cgi?id=8673

Chandler Carruth <chandl...@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
                 CC|                            |chandl...@gmail.com
         Resolution|---                         |FIXED

--- Comment #1 from Chandler Carruth <chandl...@gmail.com> ---
This bug is ancient. Not sure when it got fixed but it did:

% cat PR8673.cpp 
class ABC;
class foo {
  void bar(ABC *X);
};
void foo::bar(DEF *X) {}

% clang++ PR8673.cpp
PR8673.cpp:5:15: error: unknown type name 'DEF'
void foo::bar(DEF *X) {}
              ^
1 error generated.

-- 
You are receiving this mail because:
You are on the CC list for the bug.
_______________________________________________
llvm-bugs mailing list
llvm-bugs@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/llvm-bugs

Reply via email to