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

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

using A::operator+;