OSDN Git Service

* gcc.dg/20020201-1.c: Use cleanup-coverage_files.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / spec38.C
1 // { dg-do assemble  }
2 // 
3 // Copyright (C) 2000 Free Software Foundation, Inc.
4 // Contributed by Nathan Sidwell 19 Jan 2001 <nathan@codesourcery.com>
5
6 // Bug 1638. We failed to check if a function instantiation produced a void
7 // parameter type.
8
9 template <class T> struct S
10 {
11   int f (T);    // { dg-error "" } void type
12 };
13
14 void foo ()
15 {
16   S<void> s;
17 }