freebsd-dev/test/SemaCXX/using-decl-pr4441.cpp

10 lines
152 B
C++
Raw Normal View History

2010-01-01 10:34:51 +00:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
2009-06-27 10:45:02 +00:00
namespace A {
struct B { };
void operator+(B,B);
}
using A::operator+;