1*f4a2713aSLionel Sambuc // RUN: %clang_cc1 -fsyntax-only -verify %s 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel Sambuc struct B0; 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc class A { 6*f4a2713aSLionel Sambuc friend class B {}; // expected-error {{cannot define a type in a friend declaration}} 7*f4a2713aSLionel Sambuc friend int; // expected-warning {{non-class friend type 'int' is a C++11 extension}} 8*f4a2713aSLionel Sambuc friend B0; // expected-warning {{specify 'struct' to befriend 'B0'}} 9*f4a2713aSLionel Sambuc friend class C; // okay 10*f4a2713aSLionel Sambuc }; 11