android_mt6572_jiabo/external/clang/test/CXX/class.access/class.friend/p6.cpp
2025-09-05 16:56:03 +08:00

24 lines
596 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
void f1();
struct X {
void f2();
};
struct Y {
friend void ::f1() { } // expected-error{{friend function definition cannot be qualified with '::'}}
friend void X::f2() { } // expected-error{{friend function definition cannot be qualified with 'X::'}}
};
template <typename T> struct Z {
friend void T::f() {} // expected-error{{friend function definition cannot be qualified with 'T::'}}
};
void local() {
void f();
struct Local {
friend void f() { } // expected-error{{friend function cannot be defined in a local class}}
};
}