Merge from mainline
[official-gcc.git] / gcc / testsuite / g++.dg / template / call4.C
blob1f7eb4c8208de5afe056e19766b6e922b58c66ed
1 // PR c++/25364
3 class OFX_PropertySuiteV1
5   static int propGetDouble ();
6 };
7 template<int dimension,
8          class T,
9          int (*PROPGET)()
10   >
11 struct OFX_AnimatedNumberParam
13   virtual int paramSetValueAtTime()
14   {
15     return PROPGET();
16   }
18 void  f()
20   new OFX_AnimatedNumberParam<2,double,OFX_PropertySuiteV1::propGetDouble>();