26 lines
564 B
C++
26 lines
564 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.
|
|||
|
//
|
|||
|
//===----------------------------------------------------------------------===//
|
|||
|
|
|||
|
// <valarray>
|
|||
|
|
|||
|
// class glice;
|
|||
|
|
|||
|
// gslice();
|
|||
|
|
|||
|
#include <valarray>
|
|||
|
#include <cassert>
|
|||
|
|
|||
|
int main()
|
|||
|
{
|
|||
|
std::gslice gs;
|
|||
|
assert(gs.start() == 0);
|
|||
|
assert(gs.size().size() == 0);
|
|||
|
assert(gs.stride().size() == 0);
|
|||
|
}
|