llvm-project/clang/test/SemaCXX/user-defined-conversions.cpp
Daniel Dunbar 8fbe78f6fc Update tests to use %clang_cc1 instead of 'clang-cc' or 'clang -cc1'.
- This is designed to make it obvious that %clang_cc1 is a "test variable"
   which is substituted. It is '%clang_cc1' instead of '%clang -cc1' because it
   can be useful to redefine what gets run as 'clang -cc1' (for example, to set
   a default target).

llvm-svn: 91446
2009-12-15 20:14:24 +00:00

70 lines
1008 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
struct X {
operator bool();
};
int& f(bool);
float& f(int);
void f_test(X x) {
int& i1 = f(x);
}
struct Y {
operator short();
operator float();
};
void g(int);
void g_test(Y y) {
g(y);
short s;
s = y;
}
struct A { };
struct B : A { };
struct C {
operator B&();
};
// Test reference binding via an lvalue conversion function.
void h(volatile A&);
void h_test(C c) {
h(c);
}
// Test conversion followed by copy-construction
struct FunkyDerived;
struct Base {
Base(const FunkyDerived&);
};
struct Derived : Base { };
struct FunkyDerived : Base { };
struct ConvertibleToBase {
operator Base();
};
struct ConvertibleToDerived {
operator Derived();
};
struct ConvertibleToFunkyDerived {
operator FunkyDerived();
};
void test_conversion(ConvertibleToBase ctb, ConvertibleToDerived ctd,
ConvertibleToFunkyDerived ctfd) {
Base b1 = ctb;
Base b2(ctb);
Base b3 = ctd;
Base b4(ctd);
Base b5 = ctfd;
}