OSDN Git Service

2014-02-26 Fabien Chene <fabien@gcc.gnu.org>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / error1.C
1 // { dg-do compile }
2
3 // Copyright (C) 2003 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 30 Jun 2003 <nathan@codesourcery.com>
5
6 // PR c++ 10219. ICE
7
8 template <class T> void make_pair(T x);
9
10 void foo(){
11   struct fps_chan_ID fps; // { dg-error "incomplete" "" }
12   make_pair(fps);         // { dg-bogus "no matching function" "" }
13 }