2010-08-13 05:14:20 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2010-11-17 06:09:02 +08:00
|
|
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
|
|
|
// Source Licenses. See LICENSE.TXT for details.
|
2010-08-13 05:14:20 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
// <regex>
|
|
|
|
|
|
|
|
// typedef basic_regex<wchar_t> wregex;
|
|
|
|
|
|
|
|
#include <regex>
|
|
|
|
#include <type_traits>
|
2016-04-27 00:24:44 +08:00
|
|
|
#include "test_macros.h"
|
2010-08-13 05:14:20 +08:00
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
static_assert((std::is_same<std::basic_regex<wchar_t>, std::wregex>::value), "");
|
|
|
|
}
|