Daniel Dunbar | 8fbe78f | 2009-12-15 20:14:24 +0000 | [diff] [blame] | 1 | // RUN: %clang_cc1 -fsyntax-only -verify %s |
Anders Carlsson | 3881170 | 2009-05-11 22:55:49 +0000 | [diff] [blame] | 2 | |
| 3 | friend class A; // expected-error {{'friend' used outside of class}} |
| 4 | void f() { friend class A; } // expected-error {{'friend' used outside of class}} |
| 5 | class C { friend class A; }; |
| 6 | class D { void f() { friend class A; } }; // expected-error {{'friend' used outside of class}} |
John McCall | 2b058ef | 2009-12-11 20:04:54 +0000 | [diff] [blame] | 7 | |
| 8 | // PR5760 |
| 9 | namespace test0 { |
| 10 | namespace ns { |
| 11 | void f(int); |
| 12 | } |
| 13 | |
| 14 | struct A { |
| 15 | friend void ns::f(int a); |
| 16 | }; |
| 17 | } |
John McCall | 90d3bb9 | 2009-12-17 23:21:11 +0000 | [diff] [blame^] | 18 | |
| 19 | // Test derived from LLVM's Registry.h |
| 20 | namespace test1 { |
| 21 | template <class T> struct Outer { |
| 22 | void foo(T); |
| 23 | struct Inner { |
| 24 | friend void Outer::foo(T); |
| 25 | }; |
| 26 | }; |
| 27 | |
| 28 | void test() { |
| 29 | (void) Outer<int>::Inner(); |
| 30 | } |
| 31 | } |