llvm-for-llvmta/tools/clang/test/SemaCXX/PR25848.cpp

17 lines
251 B
C++
Raw Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -fsyntax-only -verify %s
struct A;
inline int g(); // expected-warning{{inline function 'g' is not defined}}
template<int M>
struct R {
friend int g() {
return M;
}
};
void m() {
g(); // expected-note{{used here}}
}