blob: 0133f16c5af5b1f7fdf6e2bdbd75616a0e78ef94 [file] [log] [blame]
// Build don't run:
// GROUPS passed templates
template <class T>
int foo(T t) { return 1; }
template <>
int foo(int i) { return 0; }
int main()
{
return (*((int (*)(int)) &foo<int>))(3);
}