dfmt/tests/knr/argument_chain_keep_breaks....

14 lines
234 B
Plaintext

class C {
void f()
{
if (true) {
f(
array.map!(a => a.prop)
.array
.to!string,
__FILE__,
__LINE__);
}
}
}