blob: 005d907b41c01e85a03bbeb31114068cdf99dadd [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 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), "");
}