dfmt/tests/allman/issue0195.d.ref

17 lines
231 B
Plaintext

void main()
{
auto myTid = runTask({
auto conn = connectTCP("localhost", 4222);
auto l = Lexer(conn);
foreach (t; l)
{
}
conn.close();
});
// foo
runEventLoop();
}