blob: c3523387c56baf42963c5dd89935702c50c0d9a1 [file] [log] [blame]
Howard Hinnant3257c982010-06-17 00:34:59 +00001// -*- C++ -*-
Howard Hinnant0ce02242010-09-28 17:19:10 +00002//===----------------------------------------------------------------------===//
Howard Hinnant3257c982010-06-17 00:34:59 +00003//
4// The LLVM Compiler Infrastructure
5//
Howard Hinnantb64f8b02010-11-16 22:09:02 +00006// This file is dual licensed under the MIT and the University of Illinois Open
7// Source Licenses. See LICENSE.TXT for details.
Howard Hinnant3257c982010-06-17 00:34:59 +00008//
9//===----------------------------------------------------------------------===//
10
11// <regex>
12
13// template <class charT> struct regex_traits;
14
15// charT translate(charT c) const;
16
17#include <regex>
18#include <cassert>
Howard Hinnant3257c982010-06-17 00:34:59 +000019
20int main()
21{
22 {
23 std::regex_traits<char> t;
24 assert(t.translate('a') == 'a');
25 assert(t.translate('B') == 'B');
26 assert(t.translate('c') == 'c');
27 }
28 {
29 std::regex_traits<wchar_t> t;
30 assert(t.translate(L'a') == L'a');
31 assert(t.translate(L'B') == L'B');
32 assert(t.translate(L'c') == L'c');
33 }
34}