37 lines
817 B
C++
37 lines
817 B
C++
|
//===----------------------------------------------------------------------===//
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>The LLVM Compiler Infrastructure
|
|||
|
//
|
|||
|
// This file is distributed under the University of Illinois Open Source
|
|||
|
// License. See LICENSE.TXT for details.
|
|||
|
//
|
|||
|
//===----------------------------------------------------------------------===//
|
|||
|
|
|||
|
// <array>
|
|||
|
|
|||
|
// void fill(const T& u);
|
|||
|
|
|||
|
#include <array>
|
|||
|
#include <cassert>
|
|||
|
|
|||
|
int main()
|
|||
|
{
|
|||
|
{
|
|||
|
typedef double T;
|
|||
|
typedef std::array<T, 3> C;
|
|||
|
C c = {1, 2, 3.5};
|
|||
|
c.fill(5.5);
|
|||
|
assert(c.size() == 3);
|
|||
|
assert(c[0] == 5.5);
|
|||
|
assert(c[1] == 5.5);
|
|||
|
assert(c[2] == 5.5);
|
|||
|
}
|
|||
|
{
|
|||
|
typedef double T;
|
|||
|
typedef std::array<T, 0> C;
|
|||
|
C c = {};
|
|||
|
c.fill(5.5);
|
|||
|
assert(c.size() == 0);
|
|||
|
}
|
|||
|
}
|