dfmt/tests/knr/issue0195.d.ref

16 lines
223 B
Plaintext

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