Am 16.03.2015 um 08:43 schrieb zhmt:
auto wtask = runTask({
writeln("sttt.d");});
I've tested with the follwing program and it works as expected, printing 
"sttt.d". Can you give a complete failing example?
import vibe.core.core;
import std.stdio;
shared static this()
{
	auto wtask = runTask({
		writeln("sttt.d");
	});
}