//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is dual licensed under the MIT and the University of Illinois Open // Source Licenses. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // template class sub_match; // constexpr sub_match(); #include #include int main() { { typedef char CharT; typedef std::sub_match SM; SM sm; assert(sm.matched == false); } { typedef wchar_t CharT; typedef std::sub_match SM; SM sm; assert(sm.matched == false); } }