OSDN Git Service

2004-10-05 Andrew Pinski <pinskia@physics.uc.edu>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / ext / typeof9.C
1 // { dg-do compile }
2
3 // Origin: gcc-bug@vogtner.de
4
5 // PR c++/14106: ICE with typeof of function template.
6
7 template<class T>
8 void j (T i)
9 {
10 }
11
12 template<typename T>
13 void instanciate () {
14    static void (*fp) (T) = j;
15    __typeof__ (j) *p;   // { dg-error "unknown|invalid" }
16 }
17 template void instanciate<float>();