// RUN: %clang_cc1 -fsyntax-only -ast-print %s | FileCheck %s namespace N { template void f(U); template void f(); } void g() { // CHECK: N::f(3.14 N::f(3.14); // CHECK: N::f void (*fp)(int) = N::f; }