//===----------------------------------------------------------------------===// // // The LLVM Compiler Infrastructure // // This file is distributed under the University of Illinois Open Source // License. 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(); }