summaryrefslogtreecommitdiff
path: root/test/SemaCXX/using-decl-pr4441.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/SemaCXX/using-decl-pr4441.cpp')
-rw-r--r--test/SemaCXX/using-decl-pr4441.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/SemaCXX/using-decl-pr4441.cpp b/test/SemaCXX/using-decl-pr4441.cpp
new file mode 100644
index 000000000000..6aa2b261e4db
--- /dev/null
+++ b/test/SemaCXX/using-decl-pr4441.cpp
@@ -0,0 +1,8 @@
+// RUN: clang-cc -fsyntax-only -verify %s
+
+namespace A {
+ struct B { };
+ void operator+(B,B);
+}
+
+using A::operator+;