2009-12-16 04:14:24 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
2008-11-08 04:08:42 +08:00
|
|
|
class X {
|
|
|
|
public:
|
|
|
|
operator bool();
|
|
|
|
operator int() const;
|
2008-11-18 04:34:05 +08:00
|
|
|
|
|
|
|
bool f() {
|
|
|
|
return operator bool();
|
|
|
|
}
|
|
|
|
|
|
|
|
float g() {
|
2009-12-16 16:11:27 +08:00
|
|
|
return operator float(); // expected-error{{use of undeclared 'operator float'}}
|
2008-11-18 04:34:05 +08:00
|
|
|
}
|
2008-11-08 04:08:42 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
operator int(); // expected-error{{conversion function must be a non-static member function}}
|
|
|
|
|
2008-11-18 06:58:34 +08:00
|
|
|
operator int; // expected-error{{'operator int' cannot be the name of a variable or data member}}
|
|
|
|
|
2008-11-08 04:08:42 +08:00
|
|
|
typedef int func_type(int);
|
|
|
|
typedef int array_type[10];
|
|
|
|
|
|
|
|
class Y {
|
|
|
|
public:
|
|
|
|
void operator bool(int, ...) const; // expected-error{{conversion function cannot have a return type}} \
|
2009-04-25 16:35:12 +08:00
|
|
|
// expected-error{{conversion function cannot have any parameters}}
|
|
|
|
|
|
|
|
operator float(...) const; // expected-error{{conversion function cannot be variadic}}
|
|
|
|
|
|
|
|
|
2008-11-08 04:08:42 +08:00
|
|
|
operator func_type(); // expected-error{{conversion function cannot convert to a function type}}
|
|
|
|
operator array_type(); // expected-error{{conversion function cannot convert to an array type}}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
typedef int INT;
|
|
|
|
typedef INT* INT_PTR;
|
|
|
|
|
|
|
|
class Z {
|
2008-11-24 07:12:31 +08:00
|
|
|
operator int(); // expected-note {{previous declaration is here}}
|
|
|
|
operator int**(); // expected-note {{previous declaration is here}}
|
2008-11-08 04:08:42 +08:00
|
|
|
|
|
|
|
operator INT(); // expected-error{{conversion function cannot be redeclared}}
|
|
|
|
operator INT_PTR*(); // expected-error{{conversion function cannot be redeclared}}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
class A { };
|
|
|
|
|
|
|
|
class B : public A {
|
|
|
|
public:
|
2010-03-10 19:27:22 +08:00
|
|
|
operator A&() const; // expected-warning{{conversion function converting 'B' to its base class 'A' will never be used}}
|
|
|
|
operator const void() const; // expected-warning{{conversion function converting 'B' to 'void const' will never be used}}
|
|
|
|
operator const B(); // expected-warning{{conversion function converting 'B' to itself will never be used}}
|
2008-11-08 04:08:42 +08:00
|
|
|
};
|
2009-04-17 01:51:27 +08:00
|
|
|
|
|
|
|
// This used to crash Clang.
|
|
|
|
struct Flip;
|
2010-01-06 17:43:14 +08:00
|
|
|
struct Flop { // expected-note{{candidate is the implicit copy constructor}}
|
2009-04-17 01:51:27 +08:00
|
|
|
Flop();
|
2010-01-06 17:43:14 +08:00
|
|
|
Flop(const Flip&); // expected-note{{candidate constructor}}
|
2009-04-17 01:51:27 +08:00
|
|
|
};
|
|
|
|
struct Flip {
|
2009-12-19 11:01:41 +08:00
|
|
|
operator Flop() const; // expected-note{{candidate function}}
|
2009-04-17 01:51:27 +08:00
|
|
|
};
|
2010-03-10 19:27:22 +08:00
|
|
|
Flop flop = Flip(); // expected-error {{conversion from 'Flip' to 'Flop' is ambiguous}}
|
2009-09-14 05:33:06 +08:00
|
|
|
|
|
|
|
// This tests that we don't add the second conversion declaration to the list of user conversions
|
|
|
|
struct C {
|
|
|
|
operator const char *() const;
|
|
|
|
};
|
|
|
|
|
|
|
|
C::operator const char*() const { return 0; }
|
|
|
|
|
|
|
|
void f(const C& c) {
|
|
|
|
const char* v = c;
|
|
|
|
}
|
2009-09-15 04:41:01 +08:00
|
|
|
|
|
|
|
// Test. Conversion in base class is visible in derived class.
|
|
|
|
class XB {
|
|
|
|
public:
|
2009-09-15 08:10:11 +08:00
|
|
|
operator int(); // expected-note {{candidate function}}
|
2009-09-15 04:41:01 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
class Yb : public XB {
|
|
|
|
public:
|
2009-09-15 08:10:11 +08:00
|
|
|
operator char(); // expected-note {{candidate function}}
|
2009-09-15 04:41:01 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
void f(Yb& a) {
|
2010-03-10 19:27:22 +08:00
|
|
|
if (a) { } // expected-error {{conversion from 'Yb' to 'bool' is ambiguous}}
|
2009-09-15 04:41:01 +08:00
|
|
|
int i = a; // OK. calls XB::operator int();
|
|
|
|
char ch = a; // OK. calls Yb::operator char();
|
|
|
|
}
|
|
|
|
|
2009-11-14 02:44:21 +08:00
|
|
|
// Test conversion + copy construction.
|
|
|
|
class AutoPtrRef { };
|
|
|
|
|
|
|
|
class AutoPtr {
|
|
|
|
// FIXME: Using 'unavailable' since we do not have access control yet.
|
|
|
|
// FIXME: The error message isn't so good.
|
Switch the initialization required by return statements over to the
new InitializationSequence. This fixes some bugs (e.g., PR5808),
changed some diagnostics, and caused more churn than expected. What's
new:
- InitializationSequence now has a "C conversion sequence" category
and step kind, which falls back to
- Changed the diagnostics for returns to always have the result type
of the function first and the type of the expression second.
CheckSingleAssignmentConstraints to peform checking in C.
- Improved ASTs for initialization of return values. The ASTs now
capture all of the temporaries we need to create, but
intentionally do not bind the tempoary that is actually returned,
so that it won't get destroyed twice.
- Make sure to perform an (elidable!) copy of the class object that
is returned from a class.
- Fix copy elision in CodeGen to properly see through the
subexpressions that occur with elidable copies.
- Give "new" its own entity kind; as with return values and thrown
objects, we don't bind the expression so we don't call a
destructor for it.
Note that, with this patch, I've broken returning move-only types in
C++0x. We'll fix it later, when we tackle NRVO.
llvm-svn: 91669
2009-12-18 13:02:21 +08:00
|
|
|
AutoPtr(AutoPtr &) __attribute__((unavailable)); // expected-note{{explicitly marked}}
|
2009-11-14 02:44:21 +08:00
|
|
|
|
|
|
|
public:
|
|
|
|
AutoPtr();
|
|
|
|
AutoPtr(AutoPtrRef);
|
|
|
|
|
|
|
|
operator AutoPtrRef();
|
|
|
|
};
|
|
|
|
|
|
|
|
AutoPtr make_auto_ptr();
|
|
|
|
|
|
|
|
AutoPtr test_auto_ptr(bool Cond) {
|
|
|
|
AutoPtr p1( make_auto_ptr() );
|
|
|
|
|
|
|
|
AutoPtr p;
|
|
|
|
if (Cond)
|
Switch the initialization required by return statements over to the
new InitializationSequence. This fixes some bugs (e.g., PR5808),
changed some diagnostics, and caused more churn than expected. What's
new:
- InitializationSequence now has a "C conversion sequence" category
and step kind, which falls back to
- Changed the diagnostics for returns to always have the result type
of the function first and the type of the expression second.
CheckSingleAssignmentConstraints to peform checking in C.
- Improved ASTs for initialization of return values. The ASTs now
capture all of the temporaries we need to create, but
intentionally do not bind the tempoary that is actually returned,
so that it won't get destroyed twice.
- Make sure to perform an (elidable!) copy of the class object that
is returned from a class.
- Fix copy elision in CodeGen to properly see through the
subexpressions that occur with elidable copies.
- Give "new" its own entity kind; as with return values and thrown
objects, we don't bind the expression so we don't call a
destructor for it.
Note that, with this patch, I've broken returning move-only types in
C++0x. We'll fix it later, when we tackle NRVO.
llvm-svn: 91669
2009-12-18 13:02:21 +08:00
|
|
|
return p; // expected-error{{call to deleted constructor}}
|
2009-11-14 02:44:21 +08:00
|
|
|
|
|
|
|
return AutoPtr();
|
|
|
|
}
|
|
|
|
|
Switch the initialization required by return statements over to the
new InitializationSequence. This fixes some bugs (e.g., PR5808),
changed some diagnostics, and caused more churn than expected. What's
new:
- InitializationSequence now has a "C conversion sequence" category
and step kind, which falls back to
- Changed the diagnostics for returns to always have the result type
of the function first and the type of the expression second.
CheckSingleAssignmentConstraints to peform checking in C.
- Improved ASTs for initialization of return values. The ASTs now
capture all of the temporaries we need to create, but
intentionally do not bind the tempoary that is actually returned,
so that it won't get destroyed twice.
- Make sure to perform an (elidable!) copy of the class object that
is returned from a class.
- Fix copy elision in CodeGen to properly see through the
subexpressions that occur with elidable copies.
- Give "new" its own entity kind; as with return values and thrown
objects, we don't bind the expression so we don't call a
destructor for it.
Note that, with this patch, I've broken returning move-only types in
C++0x. We'll fix it later, when we tackle NRVO.
llvm-svn: 91669
2009-12-18 13:02:21 +08:00
|
|
|
struct A1 {
|
|
|
|
A1(const char *);
|
|
|
|
~A1();
|
2009-11-14 02:44:21 +08:00
|
|
|
|
Switch the initialization required by return statements over to the
new InitializationSequence. This fixes some bugs (e.g., PR5808),
changed some diagnostics, and caused more churn than expected. What's
new:
- InitializationSequence now has a "C conversion sequence" category
and step kind, which falls back to
- Changed the diagnostics for returns to always have the result type
of the function first and the type of the expression second.
CheckSingleAssignmentConstraints to peform checking in C.
- Improved ASTs for initialization of return values. The ASTs now
capture all of the temporaries we need to create, but
intentionally do not bind the tempoary that is actually returned,
so that it won't get destroyed twice.
- Make sure to perform an (elidable!) copy of the class object that
is returned from a class.
- Fix copy elision in CodeGen to properly see through the
subexpressions that occur with elidable copies.
- Give "new" its own entity kind; as with return values and thrown
objects, we don't bind the expression so we don't call a
destructor for it.
Note that, with this patch, I've broken returning move-only types in
C++0x. We'll fix it later, when we tackle NRVO.
llvm-svn: 91669
2009-12-18 13:02:21 +08:00
|
|
|
private:
|
|
|
|
A1(const A1&) __attribute__((unavailable)); // expected-note{{here}}
|
|
|
|
};
|
|
|
|
|
|
|
|
A1 f() {
|
|
|
|
return "Hello"; // expected-error{{invokes deleted copy constructor}}
|
|
|
|
}
|