Sign in
cobalt
/
cobalt
/
308ed6b84664d59944cd65f4b4359c28a2443be6
/
.
/
src
/
third_party
/
llvm-project
/
clang
/
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}}
}