Welcome to mirror list, hosted at ThFree Co, Russian Federation.

using-decl-pr4441.cpp « SemaCXX « test « clang - github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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+;