Re: [C++ Patch] PR 57682
OK, but also remove the check for "try" after a mem-initializer; it has to come before the mem-initializers. Jason
[C++ Patch] PR 57682
Hi, in this C++11 reject valid parsing issue, in a function-try-block we reject: try : f { func } { } (1) and we normally accept the C++98: try : f ( func ) { } (2) Considering cp_parser_save_member_function_body, I think that a neat