OSDN Git Service

Restrict DR 757 change to C++0x mode.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.ns / koenig8.C
1 // { dg-do assemble  }
2 // Copyright (C) 1999 Free Software Foundation, Inc.
3 // Contributed by Nathan Sidwell 15 Dec 1999 <nathan@acm.org>
4
5 // caused an ICE determining whether to perform Koenig lookup
6 // when checking is enabled
7
8 template<class T> void Zap (T);
9
10 void  V3 ()
11 {
12   Zap (1);
13 }
14