2010-09-08 06:54:28 +08:00
|
|
|
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x -ffreestanding %s
|
2009-05-11 02:38:11 +08:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2010-11-05 08:12:09 +08:00
|
|
|
typedef decltype(nullptr) nullptr_t;
|
2009-05-11 02:38:11 +08:00
|
|
|
|
|
|
|
struct A {};
|
|
|
|
|
|
|
|
int o1(char*);
|
|
|
|
void o1(uintptr_t);
|
|
|
|
void o2(char*); // expected-note {{candidate}}
|
|
|
|
void o2(int A::*); // expected-note {{candidate}}
|
|
|
|
|
|
|
|
nullptr_t f(nullptr_t null)
|
|
|
|
{
|
|
|
|
// Implicit conversions.
|
|
|
|
null = nullptr;
|
|
|
|
void *p = nullptr;
|
|
|
|
p = null;
|
|
|
|
int *pi = nullptr;
|
|
|
|
pi = null;
|
|
|
|
null = 0;
|
|
|
|
int A::*pm = nullptr;
|
|
|
|
pm = null;
|
|
|
|
void (*pf)() = nullptr;
|
|
|
|
pf = null;
|
|
|
|
void (A::*pmf)() = nullptr;
|
|
|
|
pmf = null;
|
|
|
|
bool b = nullptr;
|
|
|
|
|
|
|
|
// Can't convert nullptr to integral implicitly.
|
2009-12-19 16:11:05 +08:00
|
|
|
uintptr_t i = nullptr; // expected-error {{cannot initialize}}
|
2009-05-11 02:38:11 +08:00
|
|
|
|
|
|
|
// Operators
|
|
|
|
(void)(null == nullptr);
|
|
|
|
(void)(null <= nullptr);
|
|
|
|
(void)(null == (void*)0);
|
|
|
|
(void)((void*)0 == nullptr);
|
|
|
|
(void)(null <= (void*)0);
|
|
|
|
(void)((void*)0 <= nullptr);
|
2010-11-04 11:17:43 +08:00
|
|
|
(void)(0 == nullptr);
|
|
|
|
(void)(nullptr == 0);
|
|
|
|
(void)(nullptr <= 0);
|
|
|
|
(void)(0 <= nullptr);
|
2009-05-11 02:38:11 +08:00
|
|
|
(void)(1 > nullptr); // expected-error {{invalid operands to binary expression}}
|
|
|
|
(void)(1 != nullptr); // expected-error {{invalid operands to binary expression}}
|
|
|
|
(void)(1 + nullptr); // expected-error {{invalid operands to binary expression}}
|
|
|
|
(void)(0 ? nullptr : 0); // expected-error {{incompatible operand types}}
|
|
|
|
(void)(0 ? nullptr : (void*)0);
|
|
|
|
|
|
|
|
// Overloading
|
|
|
|
int t = o1(nullptr);
|
|
|
|
t = o1(null);
|
|
|
|
o2(nullptr); // expected-error {{ambiguous}}
|
|
|
|
|
|
|
|
// nullptr is an rvalue, null is an lvalue
|
|
|
|
(void)&nullptr; // expected-error {{address expression must be an lvalue}}
|
|
|
|
nullptr_t *pn = &null;
|
|
|
|
|
|
|
|
// You can reinterpret_cast nullptr to an integer.
|
|
|
|
(void)reinterpret_cast<uintptr_t>(nullptr);
|
|
|
|
|
|
|
|
// You can throw nullptr.
|
|
|
|
throw nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Template arguments can be nullptr.
|
|
|
|
template <int *PI, void (*PF)(), int A::*PM, void (A::*PMF)()>
|
|
|
|
struct T {};
|
|
|
|
|
|
|
|
typedef T<nullptr, nullptr, nullptr, nullptr> NT;
|
2010-11-05 08:12:09 +08:00
|
|
|
|
|
|
|
namespace test1 {
|
|
|
|
template<typename T, typename U> struct is_same {
|
|
|
|
static const bool value = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T> struct is_same<T, T> {
|
|
|
|
static const bool value = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
void *g(void*);
|
|
|
|
bool g(bool);
|
|
|
|
|
|
|
|
// Test that we prefer g(void*) over g(bool).
|
|
|
|
static_assert(is_same<decltype(g(nullptr)), void*>::value, "");
|
|
|
|
}
|
2010-11-05 23:21:33 +08:00
|
|
|
|
|
|
|
namespace test2 {
|
|
|
|
void f(int, ...) __attribute__((sentinel));
|
|
|
|
|
|
|
|
void g() {
|
|
|
|
// nullptr can be used as the sentinel value.
|
|
|
|
f(10, nullptr);
|
|
|
|
}
|
|
|
|
}
|
2010-11-06 22:58:53 +08:00
|
|
|
|
|
|
|
namespace test3 {
|
|
|
|
void f(const char*, ...) __attribute__((format(printf, 1, 2)));
|
|
|
|
|
|
|
|
void g() {
|
|
|
|
// Don't warn when using nullptr with %p.
|
|
|
|
f("%p", nullptr);
|
|
|
|
}
|
|
|
|
}
|