2011-10-25 11:07:45 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -Wc++11-compat -verify %s
|
2009-08-06 10:15:43 +08:00
|
|
|
|
|
|
|
class A {
|
|
|
|
friend static class B; // expected-error {{'static' is invalid in friend declarations}}
|
|
|
|
friend extern class C; // expected-error {{'extern' is invalid in friend declarations}}
|
2011-10-13 03:26:40 +08:00
|
|
|
friend auto class D; // expected-warning {{incompatible with C++11}} expected-error {{'auto' is invalid in friend declarations}}
|
2009-08-06 10:15:43 +08:00
|
|
|
friend register class E; // expected-error {{'register' is invalid in friend declarations}}
|
|
|
|
friend mutable class F; // expected-error {{'mutable' is invalid in friend declarations}}
|
|
|
|
friend typedef class G; // expected-error {{'typedef' is invalid in friend declarations}}
|
|
|
|
};
|