Sign in
gnu
/
gcc
/
1f16a020acbea0af26209478990b83b1a1ba3a2b
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
friend74.C
blob: 51708334d81e26634cfb0543501881109fb1fe79 [
file
] [
log
] [
blame
]
// PR c++/105852
// { dg-additional-options -w }
template
<class>
struct
Local
{
friend
Local
False
(
int
*);
};
Local
<int>
loc
;
Local
<int>
False
(
int
*);
void
New
()
{
False
;
}
Local
<int>
False
(
int
*)
{
return
Local
<int>
();
}