blob: 8c40b154f4dc003a7ed226926817aa4733a989f8 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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 slice_array
// {
// public:
// typedef T value_type;
#include <valarray>
#include <type_traits>
int main()
{
static_assert((std::is_same<std::slice_array<int>::value_type, int>::value), "");
}