blob: de12eaf741c50d3ed36ddd9fe319d718126c0a10 [file] [log] [blame]
John McCalld7eff682009-09-02 00:55:30 +00001// RUN: clang-cc -ast-print %s -o %t &&
2// RUN: not grep '^ *class B' %t
3
4// Tests that the tag decls in friend declarations aren't added to the
5// declaring class's decl chain.
6
7class A {
8 friend class B;
9};
10