repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
conv5.C
blob
80835437a983eb3cccc320bd2ad04ea6311cd58c
1
// { dg-do compile }
2
3
// Copyright (C) 2001 Free Software Foundation, Inc.
4
// Contributed by Nathan Sidwell 26 Dec 2002 <nathan@codesourcery.com>
5
6
// PR 764. Failed to find friend in overload resolution
7
8
template <class T>
9
struct S
10
{
11
friend bool operator== (const S&, const S&) {
12
return true;
13
}
14
};
15
16
int main ()
17
{
18
// S<int> s;
19
20
const S<int> *p = 0;
21
*p == *p; // error
22
}