Zenju - 2025-03-21

There is also the opposite case:

AStyle produces:

auto test()
{
    return
    {
        .ai_flags = AI_ADDRCONFIG |
        AI_PASSIVE
    };
}

while the expected result is:

auto test()
{
    return
    {
        .ai_flags = AI_ADDRCONFIG |
                    AI_PASSIVE
    };
}