PR25848.cpp 251 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 // 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}} }