summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.old-deja/g++.ns/koenig8.C
blob: 351da517177ad41ad9a9b03954cb2174d574380d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// { dg-do assemble  }
// Copyright (C) 1999 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 15 Dec 1999 <nathan@acm.org>

// caused an ICE determining whether to perform Koenig lookup
// when checking is enabled

template<class T> void Zap (T);

void  V3 ()
{
  Zap (1);
}