constexpr int test() {
do {} while (a + 1 < 10);
return 0;
}Before:
`-FunctionDecl 0x56512a172650 <./recovery.cpp:1:1, line:4:1> line:1:15 constexpr test 'int ()' implicit-inline
`-CompoundStmt 0x56512a172860 <col:22, line:4:1>
`-ReturnStmt 0x56512a172850 <line:3:5, col:12>
`-IntegerLiteral 0x56512a172830 <col:12> 'int' 0Now:
`-FunctionDecl 0x5642c4804650 <./recovery.cpp:1:1, line:4:1> line:1:15 constexpr test 'int ()' implicit-inline
`-CompoundStmt 0x5642c48048e0 <col:22, line:4:1>
|-DoStmt 0x5642c4804890 <line:2:5, col:28>
| |-CompoundStmt 0x5642c4804740 <col:8, col:9>
| `-BinaryOperator 0x5642c4804870 <col:18, col:26> '<dependent type>' contains-errors '<'
| |-BinaryOperator 0x5642c4804850 <col:18, col:22> '<dependent type>' contains-errors '+'
| | |-RecoveryExpr 0x5642c4804830 <col:18> '<dependent type>' contains-errors lvalue
| | `-IntegerLiteral 0x5642c48047b0 <col:22> 'int' 1
| `-IntegerLiteral 0x5642c48047f0 <col:26> 'int' 10
`-ReturnStmt 0x5642c48048d0 <line:3:5, col:12>
`-IntegerLiteral 0x5642c48048b0 <col:12> 'int' 0