2010-01-01 10:34:51 +00:00
|
|
|
// RUN: %clang_cc1 -ast-print %s -o %t
|
2009-10-14 18:03:49 +00:00
|
|
|
// RUN: not grep '^ *class B' %t
|
|
|
|
|
|
|
|
// Tests that the tag decls in friend declarations aren't added to the
|
|
|
|
// declaring class's decl chain.
|
|
|
|
|
|
|
|
class A {
|
|
|
|
friend class B;
|
|
|
|
};
|
|
|
|
|