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 
foo()10 void foo(){
11   struct fps_chan_ID fps; // { dg-error "incomplete" }
12   make_pair(fps);         // { dg-bogus "no matching function" }
13 }
14