Lines Matching refs:is_constructible
61 static_assert(!std::is_constructible<Tup, Tup&>::value, ""); in test_sfinae()
65 static_assert(std::is_constructible<Tup, Elem&&>::value, ""); in test_sfinae()
66 static_assert(!std::is_constructible<Tup, Elem const&>::value, ""); in test_sfinae()
67 static_assert(!std::is_constructible<Tup, Elem&>::value, ""); in test_sfinae()
71 static_assert(std::is_constructible<Tup, Tag, Alloc>::value, ""); in test_sfinae()
72 static_assert(std::is_constructible<Tup, Tag, Alloc, Tup&&>::value, ""); in test_sfinae()
73 static_assert(!std::is_constructible<Tup, Tag, Alloc, Tup const&>::value, ""); in test_sfinae()
74 static_assert(!std::is_constructible<Tup, Tag, Alloc, Tup &>::value, ""); in test_sfinae()
78 static_assert(std::is_constructible<Tup, Tag, Alloc, Elem&&>::value, ""); in test_sfinae()
79 static_assert(!std::is_constructible<Tup, Tag, Alloc, Elem const&>::value, ""); in test_sfinae()
80 static_assert(!std::is_constructible<Tup, Tag, Alloc, Elem &>::value, ""); in test_sfinae()