mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2025-01-10 18:11:19 +00:00
c6e68daac0
llvm-svn: 166280
10 lines
152 B
C++
10 lines
152 B
C++
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
namespace A {
|
|
struct B { };
|
|
void operator+(B,B);
|
|
}
|
|
|
|
using A::operator+;
|