summaryrefslogtreecommitdiffstats
path: root/test/CXX/class/class.friend/p2.cpp
blob: 98be2049e75663d532d0aca635ab2cd800071542 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: clang-cc -fsyntax-only -verify %s

struct B0;

class A {
  friend class B {}; // expected-error {{cannot define a type in a friend declaration}}
  friend int; // expected-error {{friends can only be classes or functions}}
  friend B0; // expected-error {{must specify 'struct' to befriend}}
  friend class C; // okay
};
OpenPOWER on IntegriCloud