aboutsummaryrefslogtreecommitdiff
path: root/test/CXX/over/over.match/over.match.best/p1.cpp
blob: 59e3dac742832288518faa269d79efde1fa1f664 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics

template<typename T> int &f0(T*, int);
float &f0(void*, int);

void test_f0(int* ip, void *vp) {
  // One argument is better...
  int &ir = f0(ip, 0);
  
  // Prefer non-templates to templates
  float &fr = f0(vp, 0);
}

// Partial ordering of function template specializations will be tested 
// elsewhere
// FIXME: Initialization by user-defined conversion is tested elsewhere