Sign in
llvm
/
clang
/
36a094aaa20f6951a530e9bf0250d9afcf8a341b
/
.
/
test
/
SemaCXX
/
PR25848.cpp
blob: a22ac6650a064acd3e97568353a66a19909d2148 [
file
] [
log
] [
blame
]
// 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}}
}