summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/template/overload6.C
blob: 5e26c448b18ab9973e4e96ab8c1ac34d59537ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (C) 2005 Free Software Foundation, Inc.
// Contributed by Nathan Sidwell 12 Oct 2005 <nathan@codesourcery.com>

// PR 21592:ICE
// Origin:  Volker Reichelt <reichelt@gcc.gnu.org>

template<typename T> void unique(T,T); // { dg-message "note" }

struct A
{
  int begin();
};

template<int> void foo()
{
  unique(A().begin); // { dg-error "no matching function" "" }
  // { dg-message "candidate" "candidate note" { target *-*-* } 16 }
}