зеркало из https://github.com/microsoft/clang-1.git
7 строки
318 B
C++
7 строки
318 B
C++
// RUN: clang-cc -fsyntax-only -verify %s
|
|
|
|
friend class A; // expected-error {{'friend' used outside of class}}
|
|
void f() { friend class A; } // expected-error {{'friend' used outside of class}}
|
|
class C { friend class A; };
|
|
class D { void f() { friend class A; } }; // expected-error {{'friend' used outside of class}}
|