aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/parse/ambig1.C
blob: 2645879b30e287dbfba6bca7b4d3924c52240928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// { dg-do compile }

// Copyright (C) 2003 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 4 Jan 2003 <nathan@codesourcery.com>

// PR 9109. Ambiguity. [dcl.ambig.res]/7

template <typename T> void Foo (int (T))
{
  try {}
  catch (int (T)) {}
}