minix/external/bsd/llvm/dist/clang/test/SemaCXX/using-decl-pr4441.cpp

10 lines
152 B
C++
Raw Normal View History

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
namespace A {
struct B { };
void operator+(B,B);
}
using A::operator+;