Home | History | Annotate | Download | only in class.friend
      1 // RUN: %clang_cc1 -fsyntax-only -verify %s
      2 
      3 class A {
      4   friend static class B; // expected-error {{'static' is invalid in friend declarations}}
      5   friend extern class C; // expected-error {{'extern' is invalid in friend declarations}}
      6   friend auto class D; // expected-warning {{incompatible with C++11}} expected-error {{'auto' is invalid in friend declarations}}
      7   friend register class E; // expected-error {{'register' is invalid in friend declarations}}
      8   friend mutable class F; // expected-error {{'mutable' is invalid in friend declarations}}
      9   friend typedef class G; // expected-error {{'typedef' is invalid in friend declarations}}
     10 };
     11