freebsd-dev/test/SemaCXX/overloaded-name.cpp

15 lines
470 B
C++
Raw Normal View History

// RUN: %clang_cc1 -fsyntax-only -verify %s
int ovl(int);
float ovl(float);
template<typename T> T ovl(T);
void test(bool b) {
(void)((void)0, ovl); // expected-error{{cannot resolve overloaded function from context}}
// PR7863
(void)(b? ovl : &ovl); // expected-error{{cannot resolve overloaded function from context}}
(void)(b? ovl<float> : &ovl); // expected-error{{cannot resolve overloaded function from context}}
(void)(b? ovl<float> : ovl<float>);
}