YouCompleteMe/cpp/llvm/tools/clang/test/CXX/conv/conv.qual/pr6089.cpp
Strahinja Val Markovic 1f51a89d39 Adding more llvm/clang files
These were ignored by git accidentally. We want ALL OF THEM since they all came
in the llvm/clang source distribution.
2012-07-05 17:55:45 -07:00

19 lines
432 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
bool is_char_ptr( const char* );
template< class T >
long is_char_ptr( T /* r */ );
// Note: the const here does not lead to a qualification conversion
template< class T >
void make_range( T* const r, bool );
template< class T >
void make_range( T& r, long );
void first_finder( const char*& Search )
{
make_range( Search, is_char_ptr(Search) );
}