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