aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/koenig2.C
blob: 629cd388af8d69203ae104f5c01de1e6cee7c9ca (plain)
1
2
3
4
5
6
7
8
9
10
// Build don't link:
// Check association of {error} for Koenig lookup
// Special g++ Options:

struct QString { operator void * (); };
int foo()
{
  QString bar;
  return (bar == __null );
}