1// RUN: %clang_cc1 -std=c++11 -fsyntax-only -verify %s
2template<typename T> void f(T&&);
3template<> void f(int&) { }
4void (*fp)(int&) = &f;
5