blob: c1ae4f9e3e8dff539bea476d64b2d3d2aa8d4eb9 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
// <ios>
// class ios_base
// static const seekdir beg;
// static const seekdir cur;
// static const seekdir end;
#include <ios>
#include <cassert>
#include "test_macros.h"
int main(int, char**)
{
assert(std::ios_base::beg != std::ios_base::cur);
assert(std::ios_base::beg != std::ios_base::end);
assert(std::ios_base::cur != std::ios_base::end);
return 0;
}