From 5dc2af12bdb8c71c01556f7d5780c5ef94af0306 Mon Sep 17 00:00:00 2001 From: Anders Carlsson Date: Mon, 11 May 2009 22:25:03 +0000 Subject: For friend class decls, always use TK_Reference so we'll try to look up existing class decls first. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@71481 91177308-0d34-0410-b5e6-96231b3b80d8 --- test/Parser/cxx-friend.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'test/Parser') diff --git a/test/Parser/cxx-friend.cpp b/test/Parser/cxx-friend.cpp index 5bfaf2fdbc..ea30ddcbd0 100644 --- a/test/Parser/cxx-friend.cpp +++ b/test/Parser/cxx-friend.cpp @@ -3,3 +3,15 @@ class C { friend class D; }; + +class A { +public: + void f(); +}; + +class B { + // 'A' here should refer to the declaration above. + friend class A; + + void f(A *a) { a->f(); } +}; -- cgit v1.2.3-18-g5258