summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/using-decl-pr4441.cpp
blob: 39a446fed9acd4843ea5969e5b113641fb5b0763 (plain)
1
2
3
4
5
6
7
8
// RUN: %clang_cc1 -fsyntax-only -verify %s

namespace A {
    struct B { };
    void operator+(B,B);
}

using A::operator+;