android13/external/clang/test/CXX/temp/temp.decls/temp.class/temp.mem.func/pr5056.cpp

19 lines
259 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
extern "C" void * malloc(int);
template <typename T> struct A {
void *malloc(int);
};
template <typename T>
inline void *A<T>::malloc(int)
{
return 0;
}
void f() {
malloc(10);
}