summaryrefslogtreecommitdiffstats
path: root/test/CXX/conv/conv.qual/pr6089.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/CXX/conv/conv.qual/pr6089.cpp')
-rw-r--r--test/CXX/conv/conv.qual/pr6089.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/CXX/conv/conv.qual/pr6089.cpp b/test/CXX/conv/conv.qual/pr6089.cpp
new file mode 100644
index 0000000..ae75ec4
--- /dev/null
+++ b/test/CXX/conv/conv.qual/pr6089.cpp
@@ -0,0 +1,18 @@
+// 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) );
+}
OpenPOWER on IntegriCloud