blob: ebc3d80e3909c696813f9407890ac0022d396f42 [file] [log] [blame]
Howard Hinnant70505302010-06-17 00:34:59 +00001// -*- C++ -*-
2//===-------------------------- algorithm ---------------------------------===//
3//
4// The LLVM Compiler Infrastructure
5//
6// This file is distributed under the University of Illinois Open Source
7// License. See LICENSE.TXT for details.
8//
9//===----------------------------------------------------------------------===//
10
11// <regex>
12
13// template <class charT> struct regex_traits;
14
15// regex_traits();
16
17#include <regex>
18
19int main()
20{
21 std::regex_traits<char> t1();
22 std::regex_traits<wchar_t> t2();
23}