blob: c984c3feaa16a5323f1054dbd963b689bae34e70 [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 mask_array
// {
// public:
// typedef T value_type;
#include <valarray>
#include <type_traits>
int main()
{
static_assert((std::is_same<std::mask_array<int>::value_type, int>::value), "");
}