blob: 4f86d6a94d6bb6fed790abbab9f5202ec6579fca [file] [log] [blame]
Daniel Dunbara5728872009-12-15 20:14:24 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
Anders Carlsson00338362009-05-11 22:55:49 +00002
3friend class A; // expected-error {{'friend' used outside of class}}
4void f() { friend class A; } // expected-error {{'friend' used outside of class}}
5class C { friend class A; };
6class D { void f() { friend class A; } }; // expected-error {{'friend' used outside of class}}
John McCalle7e278b2009-12-11 20:04:54 +00007
8// PR5760
9namespace test0 {
10 namespace ns {
11 void f(int);
12 }
13
14 struct A {
15 friend void ns::f(int a);
16 };
17}
John McCalle129d442009-12-17 23:21:11 +000018
19// Test derived from LLVM's Registry.h
20namespace 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}
John McCalldf370002009-12-23 00:44:38 +000032
33// PR5476
34namespace test2 {
35 namespace foo {
36 void Func(int x);
37 }
38
39 class Bar {
40 friend void ::test2::foo::Func(int x);
41 };
42}
John McCallbc120442009-12-23 01:09:14 +000043
44// PR5134
45namespace test3 {
46 class Foo {
47 friend const int getInt(int inInt = 0);
48 };
49}
Douglas Gregore1aa9f32010-06-08 21:27:36 +000050
51namespace test4 {
52 class T4A {
53 friend class T4B;
54
55 public:
56 T4A(class T4B *);
57
58 protected:
59 T4B *mB; // error here
60 };
61
62 class T4B {};
63}