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