minix/external/bsd/libc++/dist/libcxx/test/numerics/numarray/template.gslice.array/types.pass.cpp

25 lines
608 B
C++
Raw Normal View History

//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// <valarray>
// template <class T>
// class gslice_array
// {
// public:
// typedef T value_type;
#include <valarray>
#include <type_traits>
int main()
{
static_assert((std::is_same<std::gslice_array<int>::value_type, int>::value), "");
}