2010-08-22 02:59:46 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-16 23:09:02 +01:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-08-22 02:59:46 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// type_traits
|
|
|
|
|
|
|
|
// template <class T, class... Args>
|
|
|
|
// struct is_constructible;
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
|
|
|
|
struct A
|
|
|
|
{
|
|
|
|
explicit A(int);
|
|
|
|
A(int, double);
|
2011-05-13 16:08:16 +02:00
|
|
|
private:
|
|
|
|
A(char);
|
2010-08-22 02:59:46 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
static_assert((std::is_constructible<int>::value), "");
|
|
|
|
static_assert((std::is_constructible<int, const int>::value), "");
|
|
|
|
static_assert((std::is_constructible<A, int>::value), "");
|
|
|
|
static_assert((std::is_constructible<A, int, double>::value), "");
|
|
|
|
static_assert((!std::is_constructible<A>::value), "");
|
2011-05-13 16:08:16 +02:00
|
|
|
static_assert((!std::is_constructible<A, char>::value), "");
|
|
|
|
static_assert((!std::is_constructible<A, void>::value), "");
|
|
|
|
static_assert((!std::is_constructible<void>::value), "");
|
|
|
|
static_assert((!std::is_constructible<int&>::value), "");
|
|
|
|
static_assert(( std::is_constructible<int&, int&>::value), "");
|
2010-08-22 02:59:46 +02:00
|
|
|
}
|