summaryrefslogtreecommitdiff
path: root/clang/test/SemaCXX/friend-class-nodecl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'clang/test/SemaCXX/friend-class-nodecl.cpp')
-rw-r--r--clang/test/SemaCXX/friend-class-nodecl.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/clang/test/SemaCXX/friend-class-nodecl.cpp b/clang/test/SemaCXX/friend-class-nodecl.cpp
new file mode 100644
index 0000000..41e2da6
--- /dev/null
+++ b/clang/test/SemaCXX/friend-class-nodecl.cpp
@@ -0,0 +1,10 @@
+// RUN: %clang_cc1 -ast-print %s -o %t
+// 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;
+};
+