// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s namespace PR15360 { template U f() { return &F; } // expected-error{{cannot take the address of an rvalue of type 'int (*)(int)'}} expected-error{{cannot take the address of an rvalue of type 'int *'}} void test() { f(); // expected-note{{in instantiation of}} f(); // expected-note{{in instantiation of}} } }