summaryrefslogtreecommitdiffstats
path: root/test/input/Class-friends.cxx
blob: fe3aa5630927689d4bfcb575eda658aca737f6ff (plain)
1
2
3
4
5
6
7
8
9
class A
{
};
void f(void);
class start
{
  friend class A;
  friend void f(void);
};