Add execution tests of ARM EXT intrinsics
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / variadic66.C
blobac92221519890f2ab6c46699202cc2ebc3dc7438
1 // { dg-do compile { target c++11 } }
3 template<typename Result, typename Functor, typename... ArgTypes>
4 Result bind(Functor, ArgTypes...) { }
6 void f()
8   bind<int>(17, 20, 22);