Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / SemaCXX / using-decl-pr4441.cpp
blobda21db311bb64b1558a958c6412c2e474e553c60
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 namespace A {
5 struct B { };
6 void operator+(B,B);
9 using A::operator+;