2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / template / conv5.C
blob80835437a983eb3cccc320bd2ad04ea6311cd58c
1 // { dg-do compile }
3 // Copyright (C) 2001 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 26 Dec 2002 <nathan@codesourcery.com>
6 // PR 764. Failed to find friend in overload resolution
8 template <class T>
9 struct S
11   friend bool operator== (const S&, const S&) {
12     return true;
13   }
16 int main ()
18    // S<int> s;
19   
20   const S<int> *p = 0;
21   *p == *p; // error