p10-0x.cpp revision 73b3cf6503f72f054288cf474e1a8c8ae56383c2
1// RUN: %clang_cc1 -std=c++0x -fsyntax-only -verify %s
2template<typename T> void f(T&&);
3template<> void f(int&) { }
4void (*fp)(int&) = &f;
5