blob: a22ac6650a064acd3e97568353a66a19909d2148 [file] [log] [blame]
Serge Pavlov06b7a872016-10-04 10:11:43 +00001// RUN: %clang_cc1 -fsyntax-only -verify %s
2
3struct A;
4
5inline int g(); // expected-warning{{inline function 'g' is not defined}}
6
7template<int M>
8struct R {
9 friend int g() {
10 return M;
11 }
12};
13
14void m() {
15 g(); // expected-note{{used here}}
16}