Remove test

From-SVN: r29070
This commit is contained in:
Mark Mitchell 1999-09-03 00:13:58 +00:00
parent b5cc759372
commit 3ebd9bc487

View File

@ -1,26 +0,0 @@
// Build don't run:
// Origin: Mark Mitchell <mark@codesourcery.com>
template <class T>
void f (T&) ;
template <>
void f (void (&)())
{
}
void g ()
{
}
void h ()
{
}
bool b;
int main ()
{
f (b ? g : h);
}