1// RUN: %clang_cc1 -std=c++11 -verify %s -Wno-tautological-compare2 3template <typename T>4void f(void(*pf)(), T(*ptf)(T)) {5 (void)*pf;6 (void)*ptf;7}8// expected-no-diagnostics9 10