//===----------------------------------------------------------------------===// // // 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. // //===----------------------------------------------------------------------===// // // class match_results // size_type max_size() const; #include #include template void test() { std::match_results m; assert(m.max_size() > 0); } int main() { test(); test(); }