Sign in
cobalt
/
cobalt
/
1bdf8b5470dc937a8c92ce7e2f6d3392c6a1180c
/
.
/
third_party
/
llvm-project
/
clang
/
test
/
SemaCXX
/
using-decl-pr4441.cpp
blob: da21db311bb64b1558a958c6412c2e474e553c60 [
file
] [
log
] [
blame
]
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
namespace
A
{
struct
B
{
};
void
operator
+(
B
,
B
);
}
using
A
::
operator
+;