aboutsummaryrefslogtreecommitdiff
path: root/test/SemaCXX/PR25848.cpp
blob: a22ac6650a064acd3e97568353a66a19909d2148 (plain) (blame)
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}}
}