codecvt_base.pass.cpp revision 22a74dcf50ff4338767607fa5a9d2916c2c85525
1//===----------------------------------------------------------------------===//
2//
3//                     The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10// <locale>
11
12// class codecvt_base
13// {
14// public:
15//     enum result {ok, partial, error, noconv};
16// };
17
18#include <locale>
19#include <cassert>
20
21int main()
22{
23    assert(std::codecvt_base::ok == 0);
24    assert(std::codecvt_base::partial == 1);
25    assert(std::codecvt_base::error == 2);
26    assert(std::codecvt_base::noconv == 3);
27}
28