diff options
Diffstat (limited to 'libcxx/test/re/re.syn/regex.pass.cpp')
-rw-r--r-- | libcxx/test/re/re.syn/regex.pass.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/libcxx/test/re/re.syn/regex.pass.cpp b/libcxx/test/re/re.syn/regex.pass.cpp new file mode 100644 index 00000000000..fcdfee54d9c --- /dev/null +++ b/libcxx/test/re/re.syn/regex.pass.cpp @@ -0,0 +1,20 @@ +//===----------------------------------------------------------------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +// <regex> + +// typedef basic_regex<char> regex; + +#include <regex> +#include <type_traits> + +int main() +{ + static_assert((std::is_same<std::basic_regex<char>, std::regex>::value), ""); +} |